-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 769 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
{
"name": "firebot",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"jslint": "eslint .",
"jslint-fix": "eslint . --fix"
},
"author": "Romain Marbaix <contact@romainmarbaix.be>",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^0.18.0",
"discord.js": "^11.4.2",
"ffmpeg-binaries": "^4.0.0",
"node-opus": "^0.3.1",
"sequelize": "^5.3.0",
"sqlite3": "^4.0.6",
"turndown": "^5.0.3",
"ytdl-core": "^0.29.1"
},
"devDependencies": {
"eslint": "^5.14.1",
"nodemon": "^1.18.10",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"jslint-fix"
]
}