forked from Commit451/skyhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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",
"dockerstart": "node dist/index.js",
"start": "npm run build && node dist/index.js",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "tslint --project ."
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.35",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"camelcase": "^5.3.1",
"dotenv": "8.2.0",
"ejs": "^3.0.2",
"express": "^4.17.1",
"gravatar": "^1.8.0",
"moment": "^2.24.0",
"winston": "^3.2.1"
},
"engines": {
"node": "12.16.x",
"npm": "6.13.x"
},
"repository": {
"url": "https://github.com/Commit451/skyhook"
},
"bugs": {
"url": "https://github.com/Commit451/skyhook/issues"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"skyhook",
"discord"
]
}