-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.58 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
62
63
64
65
66
67
68
{
"name": "hanako",
"version": "1.0.0",
"description": "",
"main": "index.js",
"files": [
"src",
"log4js-config.json"
],
"scripts": {
"start": "node index",
"debug": "node index --trace-warnings --trace-uncaught",
"test": "mocha --reporter nyan --recursive"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"engines": {
"node": ">=13.9.0"
},
"dependencies": {
"@discordjs/opus": "^0.1.0",
"async-exit-hook": "^2.0.1",
"axios": "^0.19.2",
"bufferutil": "^4.0.1",
"camel-case": "^4.1.1",
"discord.js": "^12.0.2",
"erlpack": "github:discordapp/erlpack",
"file-type": "^14.1.2",
"glob": "^7.1.6",
"libsodium-wrappers": "^0.7.6",
"log4js": "^6.1.2",
"nedb": "^1.8.0",
"node-emoji": "^1.10.0",
"node-libsamplerate": "git+https://github.com/nanokina/node-libsamplerate.git#8c33698dae902b790505247db1cc36ec88b43155",
"pretty-bytes": "^5.3.0",
"prism-media": "^1.2.0",
"snake-case": "^3.0.3",
"text-table": "^0.2.0",
"utf-8-validate": "^5.0.2",
"uuidv4": "^6.0.2",
"yaml": "^1.8.3"
},
"devDependencies": {
"@types/nedb": "^1.8.9",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}