travel/admin/node_modules/microcli/package.json

52 lines
1.2 KiB
JSON

{
"name": "microcli",
"version": "1.3.1",
"description": "CLI scripts micro engine",
"main": "index.js",
"scripts": {
"test": "yarn run test:lint && yarn run test:unit && yarn run test:e2e",
"test:lint": "eslint *.js",
"test:unit": "jest ./test/index.spec.js",
"test:e2e": "jest ./test/index.e2e.spec.js",
"precommit": "yarn run test:lint"
},
"engines": {
"node": ">=6.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawelgalazka/microcli.git"
},
"keywords": [
"cli",
"option",
"parser",
"command",
"commander"
],
"author": "Pawel Galazka",
"license": "MIT",
"bugs": {
"url": "https://github.com/pawelgalazka/microcli/issues"
},
"homepage": "https://github.com/pawelgalazka/microcli#readme",
"dependencies": {
"lodash": "4.17.4",
"microargs": "1.1.0"
},
"devDependencies": {
"dedent": "^0.7.0",
"eslint": "4.9.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"jest": "21.2.1"
},
"jest": {
"testEnvironment": "node"
}
}