forked from Snider/bunnycdn-gh-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "bunnyaction",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest --watch",
"build": "ncc build src/index.ts -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bearologics/BunnyAction.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bearologics/BunnyAction/issues"
},
"homepage": "https://github.com/Bearologics/BunnyAction#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^3.0.0",
"@technote-space/github-action-helper": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@zeit/ncc": "^0.22.3",
"node-fetch": "^2.6.1",
"readdirp": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"jest": {
"setupFiles": [
"./setupJest.js"
]
}
}