-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 904 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
33
{
"name": "cf-bot",
"version": "1.0.0",
"description": "A discord bot for codeforces",
"main": "./build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache src/*.js",
"build": "npm run build-clean && npm run build-make",
"build-clean": "rm -rf build/",
"build-make": "babel src -d build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunoccast/cf-bot.git"
},
"author": "brunoccast",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunoccast/cf-bot/issues"
},
"homepage": "https://github.com/brunoccast/cf-bot#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"discord.js": "^11.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.1"
}
}