forked from infinitered/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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
{
"name": "ignite-cli",
"version": "2.0.0",
"description": "An unfair headstart for your React Native apps.",
"bin": {
"ignite": "bin/ignite"
},
"preferGlobal": true,
"scripts": {
"test": "ava tests/fast",
"watch": "ava tests/fast --watch",
"coverage": "nyc ava",
"start": "node src/index.js",
"lint": "standard",
"integration": "ava -s tests/integration",
"shipit": "np"
},
"repository": "infinitered/ignite",
"author": {
"name": "Infinite Red",
"email": "npm@infinite.red",
"url": "https://github.com/infinitered/ignite"
},
"contributors": [
"https://github.com/infinitered/ignite/graphs/contributors"
],
"files": [
"readme.md",
"src",
"bin"
],
"license": "MIT",
"dependencies": {
"execa": "0.6.0",
"fs-jetpack": "1.0.0",
"gluegun": "0.18.2",
"gluegun-patching": "0.3.0",
"minimist": "1.2.0",
"pretty-error": "2.0.2",
"ramda": "0.23.0",
"ramdasauce": "1.2.0",
"semver": "5.3.0",
"shelljs": "0.7.6",
"which": "1.2.14"
},
"devDependencies": {
"ava": "0.19.1",
"babel-eslint": "7.1.1",
"mock-fs": "git://github.com/not-an-aardvark/mock-fs/#06868bbd7724707f9324b237bdde28f05f7a01d5",
"mockery": "2.0.0",
"np": "2.12.0",
"nyc": "10.3.2",
"standard": "10.0.2",
"tempy": "^0.1.0"
},
"ava": {},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__"
]
},
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x"
}
}