-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "react-native-colo-loco",
"version": "1.3.0",
"description": "Colocate your native modules with your React Native JavaScript and JSX files",
"main": "index.js",
"repository": "https://github.com/jamonholmgren/react-native-colo-loco",
"author": "Jamon Holmgren <code@jamon.dev>",
"license": "MIT",
"private": false,
"bin": {
"install-colo-loco": "./scripts/install-colo-loco"
},
"files": [
"scripts",
"README.md"
],
"prettier": {
"printWidth": 120,
"semi": false
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"semantic-release": "^22.0.7"
},
"scripts": {
"test": "jest",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"dependencies": {},
"release": {
"branches": [
"main"
],
"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}"
}
]
]
}
}