-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "tesjs",
"version": "1.0.4",
"description": "A module to streamline the use of Twitch EventSub in Node.js and Web applications",
"repository": {
"type": "git",
"url": "git+https://github.com/mitchwadair/tesjs.git"
},
"keywords": [
"tes",
"tesjs",
"twitch",
"twitch.tv",
"eventsub",
"event",
"subscription",
"webhook",
"websocket"
],
"main": "main.js",
"files": [
"/lib",
"main.js",
"LICENSE"
],
"scripts": {
"test": "mocha ./test/tests.js --bail --exit",
"build": "node ./scripts/build.js && node ./scripts/docs.js"
},
"author": "Mitchell Adair (https://github.com/mitchwadair)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mitchwadair/tesjs/issues"
},
"homepage": "https://www.tesjs.net",
"dependencies": {
"express": "4.18.2",
"node-fetch": "2.6.7",
"ws": "8.10.0"
},
"devDependencies": {
"chai": "4.3.6",
"esbuild": "0.15.13",
"jsdoc-to-markdown": "8.0.0",
"mocha": "10.0.0",
"nock": "13.2.9",
"sinon": "14.0.0",
"supertest": "6.2.3"
}
}