forked from npm/action-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
50
{
"name": "action-deploy",
"version": "2.1.6",
"private": true,
"description": "Action to manage GitHub deployments",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "ts-standard src/**/*.ts",
"pack": "ncc build lib/main.js -o dist/main && ncc build lib/post.js -o dist/post",
"test": "NODE_ENV=test jest",
"all": "npm run build && npm run lint && npm test && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm/action-deploy.git"
},
"keywords": [
"actions",
"node",
"github",
"deployments"
],
"author": "radiantspace",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "2.2.0",
"@slack/web-api": "^5.11.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@types/sinon": "^9.0.4",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",
"git-validate": "^2.2.4",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"nock": "^13.0.2",
"sinon": "^9.0.2",
"ts-jest": "^26.3.0",
"ts-standard": "^8.0.1",
"typescript": "^3.6.4"
},
"pre-commit": [
"all"
]
}