-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 995 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
34
35
36
37
38
39
40
41
42
{
"name": "roundabot-telegram",
"version": "1.0.0",
"description": "Telegram bot for JoJo fans",
"main": "build/index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir build",
"test": "xo",
"postinstall": "npm run build"
},
"xo": {
"esnext": true,
"ignores": [
"build/**/*"
]
},
"keywords": [
"Roundabout",
"Yes",
"JoJo"
],
"author": "lubien <[email protected]> (http://lubien.me)",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"botanio": "0.0.6",
"camel-case": "^3.0.0",
"dotenv": "^2.0.0",
"node-telegram-bot-api": "^0.23.3",
"req-all": "^0.1.0"
},
"devDependencies": {
"nodemon": "^1.10.0",
"xo": "^0.16.0"
}
}