-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·92 lines (92 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "JDFinance",
"version": "1.0.0",
"description": "component with vue 2.5 and es6",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"build": "webpack --env.production"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/imooc/vuejs.git"
},
"keywords": [
"es6",
"component"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/imooc/vuejs/issues"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2017
},
"extends": [
"mysticatea",
"mysticatea/modules",
"plugin:vue/recommended"
],
"plugins": [
"node"
],
"env": {
"browser": false
},
"globals": {
"applicationCache": false,
"atob": false,
"btoa": false,
"console": false,
"document": false,
"location": false,
"window": false
},
"rules": {
"node/no-extraneous-import": "error",
"node/no-missing-import": "error",
"node/no-unpublished-import": "error",
"vue/html-indent": [
"error",
4
],
"vue/max-attributes-per-line": "off"
}
},
"eslintIgnore": [
"node_modules",
"webpack.config.js"
],
"homepage": "https://gitlab.com/imooc/vuejs#README",
"dependencies": {
"clean-webpack-plugin": "^0.1.17",
"css-hot-loader": "^1.3.4",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"px2rem-loader": "^0.1.7",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"vue": "^2.5.9",
"vue-loader": "^13.5.0",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.9",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5",
"write-file-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"eslint": "^4.13.0",
"eslint-config-mysticatea": "^12.0.0",
"eslint-plugin-vue": "^4.0.0-beta.2",
"vue-eslint-parser": "^2.0.1-beta.2"
}
}