-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
112 lines (112 loc) · 2.68 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mpvue-loader",
"version": "2.0.1",
"description": "mpvue single-file component loader for Webpack",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mpvue/mpvue-loader.git"
},
"keywords": [
"mpvue",
"webpack",
"loader"
],
"files": [
"index.js",
"lib"
],
"author": "anchengjian",
"contributors": [
{
"name": "hucq"
},
{
"name": "aOrz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Meituan-Dianping/mpvue/issues"
},
"homepage": "https://github.com/mpvue/mpvue-loader",
"scripts": {
"lint": "eslint lib test",
"lint:fix": "eslint lib test --fix",
"precommit": "lint-staged",
"test": "eslint lib && mocha --slow 5000 --timeout 10000",
"docs": "cd docs && gitbook serve",
"docs:deploy": "bash ./docs/deploy.sh"
},
"lint-staged": {
"lib/**/*.js": [
"eslint --fix",
"git add"
],
"test/**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"babelon": "^1.0.5",
"consolidate": "^0.14.0",
"deep-equal": "^1.0.1",
"hash-sum": "^1.0.2",
"js-beautify": "^1.6.14",
"loader-utils": "^1.1.0",
"lru-cache": "^4.1.1",
"mkdirp": "^0.5.1",
"postcss": "^6.0.6",
"postcss-load-config": "^1.1.0",
"postcss-selector-parser": "^2.0.0",
"relative": "^3.0.2",
"resolve": "^1.3.3",
"source-map": "^0.5.6",
"upath": "^1.1.0",
"vue-hot-reload-api": "^2.1.0",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.0",
"vue-template-es2015-compiler": "^1.5.3"
},
"peerDependencies": {
"css-loader": "*"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.0",
"babel-types": "^6.26.0",
"chai": "^4.1.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.12.6",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-plugin-vue-libs": "^1.2.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"husky": "^0.14.3",
"inject-loader": "^3.0.0",
"js-yaml": "^3.9.0",
"jsdom": "^9.2.1",
"lint-staged": "^4.0.2",
"marked": "^0.3.6",
"memory-fs": "^0.4.1",
"mocha": "^3.4.2",
"mpvue-template-compiler": "^2.0.0",
"node-libs-browser": "^2.0.0",
"normalize-newline": "^3.0.0",
"null-loader": "^0.1.1",
"pug": "^2.0.0-rc.2",
"raw-loader": "^0.5.1",
"skeleton-loader": "1.1.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"sugarss": "^1.0.0",
"url-loader": "^0.5.9",
"vue": "^2.4.1",
"vue-server-renderer": "^2.4.1",
"webpack": "^3.3.0"
}
}