-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 3.47 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
{
"name": "wmui",
"version": "0.1.0",
"description": "Vue.js Components Library",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wmui/wmui"
},
"homepage": "https://github.com/wmui/wmui#readme",
"bugs": {
"url": "https://github.com/wmui/wmui/issues"
},
"scripts": {
"test": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test:watch": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"build": "npm run build:umd && npm run build:style",
"build:umd": "cross-env NODE_ENV=production webpack --progress --config build/webpack.build.config.js",
"build:style": "gulp --gulpfile ./src/gulpfile.js build",
"build:example": "cross-env NODE_ENV=production webpack --progress --config build/webpack.build-example.config.js --display-modules --sort-modules-by size",
"build:website": "cross-env 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 --ext .js,.vue packages",
"deploy:gh-pages": "npm run build:gh-pages && git checkout gh-pages && cp -r template/* . && git add . && git commit -m '[chore] Auto-deploy update demopage' --no-verify && git push",
"clean": "rimraf coverage && rimraf lib && rimraf template"
},
"author": "wmui",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"coveralls": "^2.13.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^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",
"highlight.js": "^9.12.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.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.2",
"lerna": "^2.4.0",
"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",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"vue": "^2.4.2",
"vue-loader": "^13.0.4",
"vue-router": "^2.7.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.2.0"
}
}