UNPKG

emnida

Version:

This library will using for the check to some type on the javascript.

124 lines (123 loc) 3.91 kB
{ "name": "emnida", "version": "2.0.1", "description": "This library will using for the check to some type on the javascript.", "keywords": [ "emnida", "is", "check", "dataType", "equal", "ua", "userAgent", "os", "number", "compare", "function" ], "module": "dist/emnida.esm.js", "main": "dist/emnida.js", "sideEffects": false, "scripts": { "start": "npm run clean && rollup -c ./build/rollup.config.dev.js -w", "start:node": "babel-node ./examples", "build": "npm run clean && rollup -c ./build/rollup.config.js", "deploy": "npm run lint && npm run unit && npm run build && npm run doc && npm publish && npm run clean", "unit": "babel-node ./node_modules/.bin/jest --config ./tests/unit/jest.config.js", "e2e": "npm run e2e:chrome && npm run e2e:safari && npm run e2e:firefox", "e2e:chrome": "cross-env E2E_ENV=chrome npm run start", "e2e:safari": "cross-env E2E_ENV=safari npm run start", "e2e:firefox": "cross-env E2E_ENV=firefox npm run start", "e2e:ie11": "cross-env E2E_ENV=ie11 npm run start", "e2e:edge": "cross-env E2E_ENV=edge npm run start", "nw:chrome": "babel-node ./node_modules/.bin/nightwatch --config ./tests/e2e/nightwatch.conf.js --env chrome", "nw:safari": "babel-node ./node_modules/.bin/nightwatch --config ./tests/e2e/nightwatch.conf.js --env safari", "nw:firefox": "babel-node ./node_modules/.bin/nightwatch --config ./tests/e2e/nightwatch.conf.js --env firefox", "nw:ie11": "babel-node ./node_modules/nightwatch/bin/nightwatch --config ./tests/e2e/nightwatch.conf.js --env ie11", "nw:edge": "babel-node ./node_modules/nightwatch/bin/nightwatch --config ./tests/e2e/nightwatch.conf.js --env edge", "lint": "eslint 'examples/**/*' 'lib/**/*' 'tests/**/*' --fix", "clean": "rimraf dist", "doc": "babel-node scripts/doc.js" }, "repository": { "type": "git", "url": "git+https://github.com/mohwa/emnida.git" }, "author": { "name": "mohwa", "email": "yanione2@gmail.com", "url": "" }, "license": "MIT", "bugs": { "url": "https://github.com/mohwa/emnida/issues", "email": "yanione2@gmail.com" }, "files": [ "dist", "README.md", "LICENSE.md" ], "homepage": "https://github.com/mohwa/emnida#readme", "devDependencies": { "@babel/core": "^7.12.3", "@babel/node": "^7.12.1", "@babel/plugin-proposal-optional-chaining": "^7.6.0", "@babel/preset-env": "^7.6.2", "@rollup/plugin-html": "^0.2.0", "@rollup/plugin-node-resolve": "^11.0.0", "array-organizer": "^1.0.12", "babel-eslint": "^10.0.3", "babel-jest": "^26.3.0", "babel-loader": "^8.0.6", "babel-plugin-rewire": "^1.2.0", "chai": "^4.2.0", "chromedriver": "^87.0.5", "cross-env": "^6.0.3", "cross-spawn": "^7.0.3", "documentation": "^13.1.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.4.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-prettier": "^3.1.1", "fs-extra": "^9.1.0", "geckodriver": "^1.21.1", "glob": "^7.1.6", "husky": "^3.0.8", "iedriver": "^3.150.1", "jest": "^26.4.2", "jsdoc-to-markdown": "^7.0.0", "lint-staged": "^9.4.2", "markdown-include": "^0.4.3", "nightwatch": "^1.5.1", "prettier-eslint": "^9.0.0", "rimraf": "^3.0.0", "rollup": "^2.34.2", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-serve": "^1.1.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-uglify": "^6.0.4", "selenium-server": "^3.141.59" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "prettier --write", "eslint --fix", "git add" ] }, "engines": { "node": ">=10" }, "browserslist": [ "> 1%", "last 2 version", "not ie <= 8" ] }