-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
96 lines (96 loc) · 3.58 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
{
"name": "wdui",
"version": "0.7.8",
"description": "Mobile UI Components Library based on Vue 2.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wdfe/wdui"
},
"homepage": "https://github.com/wdfe/wdui#readme",
"bugs": {
"url": "https://github.com/wdfe/wdui/issues"
},
"scripts": {
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js",
"build": "npm run build:umd && npm run build:style",
"build:umd": "NODE_ENV=production webpack --progress --config build/webpack.build.config.js",
"build:style": "gulp --gulpfile ./src/assets/styles/gulpfile.js build",
"build:example": "NODE_ENV=production webpack --progress --config build/webpack.build-example.config.js --display-modules --sort-modules-by size",
"build:website": "NODE_ENV=production webpack --progress --config build/webpack.build-website.config.js --display-modules --sort-modules-by size",
"build:gh-pages": "npm run build:example && npm run build:website",
"dev:example": "webpack-dev-server --progress --inline --config build/webpack.dev-example.config.js --host 0.0.0.0",
"dev:website": "webpack-dev-server --progress --inline --config build/webpack.dev-website.config.js --host 0.0.0.0",
"lint": "eslint --fix ./packages/**/*.vue ./packages/**/*.js ./src/**/*.js ./src/**/*.vue ./test/**/*.js ./docs/**/*.js ./docs/**/*.vue ./example/**/*.js ./example/**/*.vue",
"deploy:gh-pages": "npm run build:gh-pages && git checkout gh-pages && cp -r temp/* . && git add . && git commit -m '[chore] Auto-deploy update demopage' --no-verify&& git push",
"clean": "rm -rf temp coverage"
},
"pre-commit": {
"run": [
"lint",
"test"
]
},
"author": "wdfe",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.6.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.3.0",
"babel-preset-latest": "^6.16.0",
"babel-runtime": "^6.20.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.15",
"coveralls": "^2.13.0",
"css-loader": "^0.28.4",
"es6-promise": "^4.0.5",
"eslint": "^3.19.0",
"eslint-config-wdfe": "^0.3.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^2.0.1",
"file-loader": "^0.11.0",
"gulp": "^3.9.1",
"gulp-cssmin": "^0.1.7",
"gulp-postcss": "^6.3.0",
"gulp-sass": "^3.1.0",
"html-webpack-plugin": "^2.28.0",
"istanbul-instrumenter-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.2",
"lerna": "2.0.0-beta.30",
"markdown-it": "^8.3.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^1.2.1",
"postcss-px2rem": "^0.3.0",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.7",
"vue": "^2.2.6",
"vue-loader": "^11.3.4",
"vue-resource": "^1.2.0",
"vue-router": "^2.3.1",
"vue-style-loader": "^2.0.5",
"vue-template-compiler": "^2.2.6",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.2.0",
"webpack-stats-plugin": "^0.1.5"
}
}