forked from radiovisual/npm-install-que
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 923 Bytes
/
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
{
"name": "npm-install-que",
"version": "0.0.4",
"description": "Que up your project's dependencies, and automatically install them one-by-one.",
"license": "MIT",
"repository": "radiovisual/npm-install-que",
"author": {
"name": "Michael Wuergler",
"email": "[email protected]",
"url": "numetriclabs.com"
},
"bin": {
"npm-install-que": "index.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"que.js"
],
"keywords": [
"cli-app",
"cli",
"npm",
"install",
"que",
"one",
"by",
"at",
"a",
"time"
],
"dependencies": {
"chalk": "^1.1.1",
"cross-spawn-async": "^2.1.9",
"native-promise-only": "^0.8.1",
"object-assign": "^4.0.1",
"pkg-up": "^1.0.0"
},
"devDependencies": {
"ava": "^0.11.0",
"rimraf": "^2.5.2",
"xo": "^0.16.0"
}
}