-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "scepter",
"version": "0.0.1",
"description": "Modular Discord bot",
"main": "build/scepter.js",
"scripts": {
"test": "gulp",
"unit": "gulp unit",
"style": "gulp style",
"fix": "standard --fix",
"start": "tsc && node build/scepter.js",
"dev:debug": "nodemon --inspect scepter.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run style"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nixnest/scepter.git"
},
"author": "",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/nixnest/scepter/issues"
},
"homepage": "https://github.com/nixnest/scepter#readme",
"dependencies": {
"@types/node": "^10.12.18",
"better-sqlite-pool": "^0.1.2",
"better-sqlite3": "^5.4.0",
"bindings": "^1.5.0",
"discord.js": "^11.4.2",
"dotenv": "^6.2.0",
"enmap": "^4.8.7",
"node-cron": "^2.0.3",
"tslint": "^5.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"gulp": "^4.0.0",
"gulp-mocha": "^6.0.0",
"gulp-standard": "^12.0.0",
"gulp-tslint": "^8.1.3",
"husky": "^2.3.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"prettier": "^1.17.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.2.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"erlpack": "github:hammerandchisel/erlpack"
}
}