forked from roccomuso/node-webhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
51
52
{
"name": "node-webhooks",
"version": "1.4.2",
"description": "Create and trigger your own webHooks",
"main": "index.js",
"scripts": {
"test": "npm run std && npm run coverage",
"std": "standard",
"coverage": "istanbul cover _mocha -- --timeout=5000 test/**/*.js",
"publish-coverage": "cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">=6.*.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roccomuso/node-webhooks.git"
},
"keywords": [
"webhooks",
"trigger",
"web",
"hooks"
],
"author": "Rocco Musolino <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/roccomuso/node-webhooks/issues"
},
"homepage": "https://github.com/roccomuso/node-webhooks#readme",
"dependencies": {
"bluebird": "^3.5.3",
"debug": "^4.1.1",
"eventemitter2": "^5.0.1",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.2.0",
"standard": "^10.0.2"
},
"standard": {
"env": [
"mocha"
]
}
}