forked from lucasbento/core-workflow-apply-version-label
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 857 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
{
"name": "actions-apply-version-label",
"version": "0.0.3",
"author": {
"name": "Lucas Bento",
"url": "https://github.com/lucasbento"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"marked": "^4.0.10",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/marked": "^4.0.1",
"@types/node": "^17.0.10",
"@types/semver": "^7.3.9",
"@vercel/ncc": "^0.31.1",
"husky": "^7.0.4",
"typescript": "^4.5.5"
},
"license": "MIT",
"repository": "https://github.com/react-native-community/actions-apply-version-label",
"scripts": {
"build": "ncc build src/index.ts --out ./dist",
"build:watch": "yarn build -w",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"start": "ncc run dist/index.js",
"prepare": "husky install"
}
}