forked from alex-page/github-project-automation-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "github-project-automation-plus",
"version": "0.1.1",
"description": "🤖 Automate GitHub Project cards with any webhook event",
"private": true,
"main": "dist/index.js",
"scripts": {
"watch": "ncc build index.js --watch --minify",
"build": "ncc build index.js --minify",
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-page/automate-project-columns.git"
},
"keywords": [
"github-actions",
"github-projects",
"issues",
"pulls",
"automation",
"columns"
],
"author": "Alex Page <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-page/automate-project-columns/issues"
},
"homepage": "https://github.com/alex-page/automate-project-columns#readme",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^1.1.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.4",
"husky": "^3.0.5",
"xo": "^0.24.0"
},
"files": [
"dist/index.js"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dist/index.js"
}
}
}