forked from michaeltheodore048/starter-bot-line
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 852 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": "Line",
"version": "2.0.0",
"description": "",
"main": "bot.js",
"scripts": {
"start": "node ./node_modules/babel-cli/bin/babel-node.js src/server.js",
"lint": "eslint src/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"recastai": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.5",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.6.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"semi": [
2,
"never"
]
}
}
}