forked from infinitered/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.48 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
{
"name": "ignite-cli",
"version": "2.0.0",
"description": "An unfair headstart for your React Native apps.",
"bin": {
"ignite": "bin/ignite"
},
"preferGlobal": true,
"scripts": {
"test": "nyc ava tests/fast",
"watch": "ava tests/fast --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"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.8.0",
"fs-jetpack": "1.2.0",
"gluegun": "0.20.0",
"gluegun-patching": "0.3.0",
"minimist": "1.2.0",
"pretty-error": "2.0.2",
"ramda": "0.24.1",
"ramdasauce": "2.1.0",
"semver": "5.4.1",
"shelljs": "0.7.8",
"which": "1.3.0"
},
"devDependencies": {
"ava": "0.19.1",
"babel-eslint": "7.1.1",
"coveralls": "^3.0.0",
"mock-fs": "4.4.1",
"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"
}
}