-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "discord-crescer",
"version": "1.0.0",
"description": "a bot for the cwi-crescer's discord",
"main": "src/index.js",
"scripts": {
"lint": "eslint",
"test": "mocha ./dist/spec/**",
"start": "node ./dist/index.js",
"dev": "babel-node ./src/index.js",
"compile": "babel ./src --out-dir ./dist",
"prepublish": "npm run compile",
"dev-test": "mocha --require babel-register ./src/spec/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardobork/crescer-discord-bot.git"
},
"keywords": [
"bot",
"discord"
],
"author": "leonardo.bork@cwi.com.br",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardobork/crescer-discord-bot/issues"
},
"homepage": "https://github.com/leonardobork/crescer-discord-bot#readme",
"dependencies": {
"discord.js": "^11.3.2",
"dotenv": "^5.0.1",
"mongoose": "^5.1.3",
"node-cron": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0"
}
}