-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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": "node-hook-action",
"version": "1.0.3",
"description": "Sample node express webhook application that trigger shell commands",
"main": "src/makeServer",
"scripts": {
"preinstall": "npm-force-resolutions",
"test": "mocha --unhandled-rejections=strict tests/*.test.js",
"testAsync": "set ENABLE_ASYNC_TESTS=true&& mocha --unhandled-rejections=strict tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creharmony/node-hook-action.git"
},
"keywords": [
"node",
"hook",
"trigger",
"action",
"command",
"github"
],
"author": "Brice Vandeputte",
"license": "MIT",
"bugs": {
"url": "https://github.com/creharmony/node-hook-action/issues"
},
"homepage": "https://github.com/creharmony/node-hook-action#readme",
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsonpath": "^1.0.2",
"moment": "^2.29.1",
"shelljs": "^0.8.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^9.1.4",
"npm-force-resolutions": "^0.0.10",
"supertest": "^6.0.1"
},
"resolutions": {
"nanoid": "^3.2.0"
}
}