-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.05 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
{
"name": "install-subset",
"version": "6.0.0",
"description": "Install a subset of npm dependencies based on given contexts",
"main": "index.js",
"bin": {
"subset": "index.js"
},
"keywords": [
"npm",
"install",
"subset",
"dependency"
],
"bugs": {
"url": "https://github.com/tabrindle/install-subset/issues"
},
"files": [
"index.js",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/tabrindle/install-subset.git"
},
"scripts": {
"test": "jest",
"format": "prettier index.js src/*.js --write"
},
"author": "[email protected]",
"license": "MIT",
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "node",
"verbose": true
},
"devDependencies": {
"jest": "^26.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"commander": "^5.1.0",
"cross-spawn": "^7.0.3",
"import-fresh": "^3.2.1",
"shelljs": "^0.8.4"
}
}