-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1007 Bytes
/
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
{
"name": "simple-docker-webhook",
"version": "1.0.2",
"description": "A simple webhook for docker",
"main": "lib/Main.js",
"types": "lib/Main.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tolfix/simple-docker-webhook.git"
},
"keywords": [
"webhook",
"docker webhook",
"docker",
"express"
],
"author": "Tolfx",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tolfix/simple-docker-webhook/issues"
},
"homepage": "https://github.com/Tolfix/simple-docker-webhook#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"files": [
"lib/**/*"
]
}