forked from Commit451/skyhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 849 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 849 Bytes
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
{
"name": "skyhook",
"version": "0.0.1",
"description": "Parses webhooks and forwards it in the proper format to Discord",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"dependencies": {
"body-parser": "^1.18.2",
"camelcase": "^4.1.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"winston": "^2.4.0"
},
"engines": {
"node": "8.9.x"
},
"repository": {
"url": "https://github.com/Commit451/skyhook"
},
"bugs": {
"url": "https://github.com/Commit451/skyhook/issues"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"skyhook",
"discord"
],
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.2.0"
}
}