-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 950 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
33
34
35
{
"name": "auto-label",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"build": "node fuse",
"build:watch": "node fuse --variant watch",
"lint": "eslint --cache --ext .ts src",
"lint:fix": "yarn lint --fix",
"fmt": "prettier --write **/*.ts"
},
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/github": "^2.1.0",
"@octokit/graphql": "^4.3.1",
"ignore": "^5.0.5",
"lodash.pick": "^4.4.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@octokit/webhooks": "^7.0.0",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"fuse-box": "^3.7.1",
"prettier": "^1.19.1",
"typescript": "^3.7.5",
"yargs": "^15.1.0"
}
}