forked from IvanFon/super-labeler-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 793 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
{
"name": "super-labeler-action",
"version": "0.1.0",
"description": "A superpowered issue and pull request labeler for Github Actions.",
"main": "src/index.ts",
"repository": "[email protected]:IvanFon/super-labeler-action.git",
"author": "Ivan Fonseca <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": "12"
},
"scripts": {
"build": "ncc build src/index.ts -o dist",
"format": "prettier --write src/**/*.ts"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/minimatch": "^3.0.3",
"@zeit/ncc": "^0.21.1",
"prettier": "^1.19.1"
}
}