-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
61 lines (61 loc) · 1.27 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "weixin-bot-chrome-extension",
"description": "weixin-bot-chrome-extension",
"author": "spacelan1993@gmail.com",
"license": "MIT",
"scripts": {
"lint": "eslint scripts.babel/",
"build": "npm run lint && cross-env NODE_ENV=production npm run watch",
"watch": "webpack"
},
"dependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.2.3",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.1.2",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"json-loader": "^0.5.4",
"path": "^0.12.7",
"style-loader": "^0.13.0",
"vue": "^1.0.20",
"webpack": "^1.12.13",
"wechat4u": "^0.2.5",
"babel-eslint": "^5.0.1",
"eslint": "^2.5.3",
"estraverse-fb": "^1.3.1"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"always"
],
"strict": "off",
"no-console": "off"
},
"globals": {
"chrome": true,
"$": true
},
"parser": "babel-eslint"
},
"babel": {
"presets": [
"es2015"
]
}
}