forked from infinitered/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.28 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ignite-cli",
"version": "2.2.2",
"description": "An unfair headstart for your React Native apps.",
"bin": {
"ignite": "bin/ignite"
},
"preferGlobal": true,
"scripts": {
"test": "jest tests/fast",
"watch": "jest tests/fast --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "node src/index.js",
"lint": "standard",
"integration": "jest tests/integration",
"ci:test": "yarn test && yarn integration",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"repository": "infinitered/ignite",
"author": {
"name": "Infinite Red",
"email": "[email protected]",
"url": "https://github.com/infinitered/ignite"
},
"contributors": [
"https://github.com/infinitered/ignite/graphs/contributors"
],
"files": [
"readme.md",
"src",
"bin"
],
"license": "MIT",
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x"
},
"dependencies": {
"cryptiles": ">=4.1.2",
"execa": "0.8.0",
"fs-jetpack": "1.2.0",
"gluegun": "0.20.0",
"gluegun-patching": "0.3.0",
"lodash": ">=4.17.5",
"minimist": "1.2.0",
"mixin-deep": ">=1.3.1",
"pretty-error": "2.0.2",
"ramda": "0.24.1",
"ramdasauce": "2.1.0",
"react-native-cli": "^2.0.1",
"semver": "5.4.1",
"shelljs": "0.7.8",
"which": "1.3.0"
},
"devDependencies": {
"@semantic-release/git": "^7.0.5",
"babel-eslint": "7.1.1",
"coveralls": "^3.0.0",
"jest": "^23.6.0",
"mock-fs": "4.4.1",
"mockery": "2.0.0",
"nyc": "^13.1.0",
"semantic-release": "^15.12.4",
"standard": "10.0.2",
"tempy": "^0.1.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}