|  | 
| 3 | 3 |   "version": "0.0.0-development", | 
| 4 | 4 |   "description": "CLI that combines searching and installing npm packages", | 
| 5 | 5 |   "main": "index.js", | 
| 6 |  | -  "bin": {}, | 
|  | 6 | +  "bin": { | 
|  | 7 | +    "nis": "./build/executables/nis.js" | 
|  | 8 | +  }, | 
| 7 | 9 |   "global": true, | 
| 8 | 10 |   "scripts": { | 
| 9 | 11 |     "codecov": "codecov", | 
| 10 | 12 |     "commitmsg": "commitlint -e $GIT_PARAMS", | 
| 11 | 13 |     "compile": "babel -d build/ src/ --ignore node_modules,*.test.js", | 
|  | 14 | +    "compile:prod": "babel env=PROD -d build/ src/ --ignore node_modules,*.test.js", | 
| 12 | 15 |     "lint": "eslint --ext .js .", | 
| 13 | 16 |     "test": "jest --coverage --passWithNoTests", | 
| 14 | 17 |     "prepublishOnly": "npm run compile", | 
|  | 
| 29 | 32 |     "testEnvironment": "node" | 
| 30 | 33 |   }, | 
| 31 | 34 |   "dependencies": { | 
|  | 35 | +    "@babel/runtime": "^7.0.0-beta.42", | 
|  | 36 | +    "axios": "^0.18.0", | 
|  | 37 | +    "chalk": "^2.3.2", | 
| 32 | 38 |     "commander": "^2.15.1", | 
| 33 |  | -    "inquirer": "^5.2.0" | 
|  | 39 | +    "inquirer": "^5.2.0", | 
|  | 40 | +    "inquirer-autocomplete-prompt": "^0.12.2" | 
| 34 | 41 |   }, | 
| 35 | 42 |   "devDependencies": { | 
| 36 | 43 |     "@babel/cli": "^7.0.0-beta.42", | 
| 37 | 44 |     "@babel/core": "^7.0.0-beta.42", | 
|  | 45 | +    "@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42", | 
|  | 46 | +    "@babel/plugin-transform-async-to-generator": "^7.0.0-beta.42", | 
|  | 47 | +    "@babel/plugin-transform-runtime": "^7.0.0-beta.42", | 
| 38 | 48 |     "@babel/preset-env": "^7.0.0-beta.42", | 
| 39 | 49 |     "@commitlint/cli": "^6.1.3", | 
| 40 | 50 |     "@commitlint/config-angular": "^6.1.3", | 
| 41 | 51 |     "@commitlint/prompt": "^6.1.3", | 
| 42 | 52 |     "@commitlint/prompt-cli": "^6.1.3", | 
| 43 | 53 |     "babel-core": "^7.0.0-bridge.0", | 
| 44 | 54 |     "babel-jest": "^22.4.3", | 
|  | 55 | +    "babel-preset-minify": "^0.3.0", | 
| 45 | 56 |     "codecov": "^3.0.0", | 
| 46 | 57 |     "eslint": "^4.19.1", | 
| 47 | 58 |     "eslint-config-airbnb-base": "^12.1.0", | 
|  | 
0 commit comments