This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
81 lines (81 loc) · 1.84 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
{
"name": "ignite-andross",
"description": "Infinite Red's hot boilerplate for React Native.",
"license": "MIT",
"repository": "infinitered/ignite-andross",
"homepage": "https://github.com/infinitered/ignite-andross",
"version": "4.3.0",
"files": [
"boilerplate",
"commands",
"lib",
"templates",
"boilerplate.js",
"ignite.json",
"options.js",
"plugin.js",
"readme.md",
"screenExamples.js"
],
"author": {
"name": "Infinite Red",
"email": "npm@infinite.red",
"url": "https://github.com/infinitered/ignite-andross"
},
"scripts": {
"lint": "standard",
"test": "jest",
"watch": "jest --runInBand --watch",
"coverage": "jest --runInBand --coverage",
"ci:test": "yarn test",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__",
"jasmine",
"beforeAll",
"afterAll",
"test",
"expect",
"describe"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"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}"
}
]
]
},
"devDependencies": {
"@semantic-release/git": "^7.0.5",
"babel-eslint": "^7.1.1",
"fs-jetpack": "^1.0.0",
"jest": "^20.0.4",
"np": "^2.15.0",
"semantic-release": "^15.12.2",
"sinon": "^2.3.1",
"socks": "^2.1.6",
"standard": "^10.0.2",
"tempy": "^0.1.0"
},
"dependencies": {
"ramda": "^0.26.1"
}
}