-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
{
"name": "@mwillbanks/release-it-expo-bumper-plugin",
"version": "1.0.0",
"description": "Release-it plugin for Expo which bumps app.json or app.config.json version numbers.",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "bron test.js",
"release": "release-it"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwillbanks/release-it-expo-plugin.git"
},
"keywords": [
"release",
"release-it",
"release-it-plugin",
"expo",
"bump",
"increment",
"app.json"
],
"author": {
"email": "[email protected]",
"name": "Mike Willbanks"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mwillbanks/release-it-expo-plugin/issues"
},
"homepage": "https://github.com/mwillbanks/release-it-expo-plugin#readme",
"dependencies": {},
"devDependencies": {
"bron": "^2.0.3",
"mock-fs": "^5.1.2",
"release-it": "^15.0.0-esm.4",
"sinon": "^13.0.2"
},
"peerDependencies": {
"release-it": "^15.0.0-esm.4"
},
"engines": {
"node": ">=14"
},
"release-it": {
"hooks": {
"before:init": "npm test"
}
}
}