forked from Commit451/skyhook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "skyhook",
"version": "0.0.1",
"description": "Parses webhooks and forwards it in the proper format to Discord",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"start": "npm run build && node dist/index.js",
"test": "mocha -r ts-node/register test/*.ts",
"lint": "tslint --project .",
"visualTest": "npm run build && node dist/test.js"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-http": "^3.0.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"camelcase": "^5.0.0",
"dotenv": "^6.0.0",
"ejs": "^2.5.7",
"express": "^4.16.3",
"moment": "^2.22.2",
"winston": "^3.0.0"
},
"engines": {
"node": "10.5.x",
"npm": "6.1.x"
},
"repository": {
"url": "https://github.com/Commit451/skyhook"
},
"bugs": {
"url": "https://github.com/Commit451/skyhook/issues"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"skyhook",
"discord"
]
}