-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 KB
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
51
52
53
54
{
"name": "node-hook-action",
"version": "1.0.3",
"description": "Sample node express webhook application that trigger shell commands",
"main": "src/WebhookServerLauncher.js",
"type": "module",
"scripts": {
"ci-test": "echo \"ci-test based on .c8rc.json\" && c8 --reporter text --reporter=lcov --lines 66 mocha --unhandled-rejections=strict tests/*.test.js --timeout 50000",
"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": "^2.2.0",
"espress": "^0.0.0",
"express": "^5.1.0",
"http-errors": "^2.0.0",
"jsonpath": "^1.0.2",
"moment": "^2.29.1",
"shelljs": "^0.10.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"c8": "^10.1.3",
"chai": "^6.2.0",
"chai-http": "^5.1.2",
"mocha": "^11.7.4",
"supertest": "^7.1.4"
},
"pnpm": {
"overrides": {
"nanoid": "^3.2.0"
}
},
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa"
}