-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "honk-action",
"version": "1.0.0",
"description": "A bot which requires all comments to be 'Honk' or it deletes them",
"repository": {
"type": "git",
"url": "git+https://github.com/jeffrafter/honk-action.git"
},
"keywords": [
"honk",
"goose",
"github",
"action"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffrafter/honk-action/issues"
},
"homepage": "https://github.com/jeffrafter/honk-action#readme",
"scripts": {
"build": "tsc --noEmit && ncc build honk.ts -o dist -m",
"test": "tsc --noEmit && jest",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.18",
"@types/nock": "^11.1.0",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"@zeit/ncc": "^0.21.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"nock": "^11.3.4",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.6.3"
},
"dependencies": {
"@actions/core": "^1.1.0",
"@actions/github": "^1.1.0",
"glob": "^7.1.4"
}
}