-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "npm-install-search-cli",
"description": "CLI that combines searching and installing packages from the npm registry",
"version": "0.0.0-development",
"author": "[email protected]",
"main": "./build/index.js",
"bin": {
"nis": "./build/executables/nis.js",
"yas": "./build/executables/yas.js"
},
"global": true,
"scripts": {
"codecov": "npx codecov",
"commitmsg": "npx commitlint -e $GIT_PARAMS",
"build": "npx babel src/ -d build/ --delete-dir-on-start",
"build:prod": "BABEL_ENV=production npm run build",
"lint": "npx eslint --ext .js .",
"test": "npx jest",
"prepublishOnly": "npm run build:prod",
"gc": "npx commit",
"semantic-release": "npx semantic-release",
"travis-deploy-once": "npx travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/npm-install-search-cli.git"
},
"keywords": [
"install",
"search",
"cli",
"npm install",
"npm search",
"npm install search"
],
"bugs": {
"url": "https://github.com/jaebradley/npm-install-search-cli/issues"
},
"homepage": "https://github.com/jaebradley/npm-install-search-cli#readme",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.10.0",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"child-process-promise": "^2.2.1",
"commander": "^5.1.0",
"inquirer": "^6.5.2",
"inquirer-autocomplete-prompt": "^1.0.2",
"npms-client": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@commitlint/prompt-cli": "^8.3.5",
"ajv": "^6.11.0",
"babel-jest": "^25.1.0",
"babel-preset-minify": "^0.5.1",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"semantic-release": "^17.0.3",
"travis-deploy-once": "^5.0.11",
"utf-8-validate": "^5.0.2"
}
}