forked from joerick/pr-labels-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 930 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": "pr-labels-action",
"version": "1.0.8",
"description": "A github action that extracts labels from the PR that this build belongs to and make them available to other actions.",
"main": "build/index.js",
"scripts": {
"build": "tsc --skipLibCheck",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joerick/pr-labels-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/joerick/pr-labels-action/issues"
},
"homepage": "https://github.com/joerick/pr-labels-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/lodash": "^4.14.165",
"@vercel/ncc": "^0.36.0",
"typescript": "^4.0.2"
}
}