forked from banyan/auto-label
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "my-cool-action",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"build": "node fuse",
"build:watch": "node fuse --variant watch",
"lint": "eslint --cache --ext .ts src",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"actions-toolkit": "^1.4.1",
"ignore": "^5.0.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.24",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"eslint": "^5.14.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"fuse-box": "^3.7.0",
"prettier": "^1.16.4",
"tslib": "^1.9.3",
"typescript": "^3.3.3",
"yargs": "^12.0.5"
}
}