forked from nathanhleung/install-peerdeps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "install-peerdeps",
"version": "3.0.3",
"description": "CLI to automatically install peerDeps",
"main": "lib/cli.js",
"scripts": {
"tape": "tape --require=@babel/polyfill",
"pretests-only": "npm run build:test",
"tests-only": "npm run tape test/*.test.js | ./node_modules/.bin/tap-spec",
"lint": "eslint src/ --fix",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib --ignore *.test.js",
"prebuild:test": "rimraf test",
"build:test": "babel src --out-dir test",
"prepare": "npm run build",
"pretest": "npm run lint",
"test": "npm run tests-only"
},
"preferGlobal": true,
"bin": {
"install-peerdeps": "lib/cli.js"
},
"engines": {
"node": ">=8.0"
},
"repository": {
"url": "https://github.com/nathanhleung/install-peerdeps",
"type": "git"
},
"bugs": {
"url": "https://github.com/nathanhleung/install-peerdeps/issues"
},
"keywords": [
"install",
"peerdeps",
"automatically",
"yarn",
"npm",
"airbnb",
"eslint"
],
"author": "nathanhleung",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"cli-color": "^2.0.0",
"commander": "^4.0.1",
"promptly": "^3.0.3",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}