-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 897 Bytes
/
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
{
"name": "discord-reporter",
"version": "0.1.0",
"description": "UT99 Reporter Bot for Discord",
"url" : "https://github.com/sn3p/discord-reporter",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist",
"watch": "babel -w src -d dist",
"serve": "npm run watch | nodemon --watch dist dist/index.js",
"lint": "eslint . --ignore-path .gitignore",
"test": "npm run lint"
},
"author": "sn3p",
"license": "MIT",
"dependencies": {
"discord.js": "^11.0.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
}
}