-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 1.52 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
63
{
"name": "twitch-webhook",
"version": "1.2.4",
"description": "A Node JS library for new Twitch Helix API Webhooks",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/true-dubach/node-twitch-webhook.git"
},
"keywords": [
"node",
"twitch",
"helix",
"webhook"
],
"maintainers": [
"Panishev Daniil <[email protected]>"
],
"contributors": [
"Egor Smirnov <[email protected]>",
"Roman Nikonov <[email protected]>"
],
"author": "Panishev Daniil",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"is-absolute-url": "^2.1.0",
"parse-link-header": "^1.0.1",
"querystring": "^0.2.0",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"node_modules",
"test"
]
},
"engines": {
"node": ">= 6.0.0"
}
}