forked from andymckay/labeler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 803 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": "labeler",
"version": "1.1.0",
"description": "Labels issues when they land in a repo.",
"main": "label.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"package": "ncc build label.js -o dist --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andymckay/labeler.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/andymckay/labeler/issues"
},
"homepage": "https://github.com/andymckay/labeler#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint": "^6.5.1",
"prettier": "^1.18.2",
"jest": "^29.7.0"
}
}