-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "webhooked",
"version": "0.0.5",
"description": "Webhooked",
"main": "index.js",
"bin": {
"webhooked": "./bin/webhooked"
},
"scripts": {
"test": "DB_PATH=./test-db jest -i --forceExit",
"pretest": "rm -rf ./test-db",
"posttest": "rm -rf ./test-db",
"start": "./bin/webhooked",
"debug": "node --inspect ./bin/webhooked"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmosgenius/webhooked.git"
},
"keywords": [
"webhooked",
"deployment",
"webhook"
],
"author": "Sharat M R",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmosgenius/webhooked/issues"
},
"homepage": "https://github.com/cosmosgenius/webhooked#readme",
"engines": {
"node": ">=7.6.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"collectCoverage": true
},
"devDependencies": {
"colors": "^1.1.2",
"eslint": "^4.9.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"jest": "^21.2.1"
},
"dependencies": {
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"chalk": "^2.2.0",
"commander": "^2.11.0",
"debug": "^3.1.0",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-etag": "^3.0.0",
"koa-response-time": "^2.0.0",
"koa-router": "^7.2.1",
"level": "^2.0.0",
"level-sublevel": "^6.6.1",
"through2": "^2.0.3"
}
}