-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 921 Bytes
/
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
{
"name": "upgrade-support",
"version": "1.0.0",
"author": {
"name": "Lucas Bento",
"url": "https://github.com/lucasbento"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/github": "^2.0.0",
"find-versions": "^3.2.0",
"md-2-json": "^1.0.6",
"semver": "^7.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.21.0",
"husky": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn build:actions; git add actions/**/dist/*"
}
},
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/react-native-community/upgrade-support",
"scripts": {
"build:addLabelRNVersion": "ncc build actions/addLabelRNVersion/*.js --out actions/addLabelRNVersion/dist",
"build:newRelease": "ncc build actions/newRelease/*.js --out actions/newRelease/dist",
"build:actions": "yarn build:addLabelRNVersion && yarn build:newRelease"
}
}