-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "labeler",
"version": "2.0.0",
"description": "GitHub Action to recognize and label modified code areas.",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"build": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub Actions",
"Labels",
"Recognize"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zattoo/labeler/issues"
},
"homepage": "https://github.com/zattoo/labeler#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"fs-extra": "11.1.0",
"glob-promise": "6.0.3"
},
"devDependencies": {
"@types/fs-extra": "11.0.0",
"@vercel/ncc": "0.36.0",
"eslint": "8.46.0",
"jest": "29.6.2"
}
}