-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.03 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
48
49
{
"name": "javascript-action",
"version": "1.0.0",
"description": "JavaScript Action Template",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"build": "ncc build index.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/github": "^2.2.0",
"@octokit/graphql": "^4.5.3"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"husky": "^4.2.5",
"standard": "^14.3.4"
},
"standard": {
"ignore": [
"dist/",
"tests/"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/",
"pre-push": "npm run lint"
}
}
}