-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.67 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
{
"name": "react-native-ci",
"version": "0.2.1",
"description": "react-native-ci CLI",
"bin": {
"react-native-ci": "bin/react-native-ci"
},
"preferGlobal": true,
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"ci:test": "jest",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"repository": "solinor/react-native-ci",
"author": {
"name": "Juha Linnanen",
"email": "[email protected]",
"url": "https://github.com/solinor/react-native-ci"
},
"files": [
"LICENSE",
"readme.md",
"docs",
"bin",
"src"
],
"license": "MIT",
"dependencies": {
"gluegun": "^3.2.0",
"install-packages": "^0.2.5"
},
"devDependencies": {
"@semantic-release/git": "^7.0.8",
"jest": "^23.6.0",
"prettier": "^1.12.1",
"semantic-release": "^15.13.3",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)"
]
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"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}"
}
]
]
}
}