forked from NewDadaFE/vue-impression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.33 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": "vue-impression",
"version": "0.15.18",
"description": "A Vue.js 2.0 UI elements for mobile.",
"main": "dist/scripts/components/index.js",
"scripts": {
"start": "gulp build && webpack -p --config webpack.prebuilt.config.js",
"poststart": "webpack-dev-server --config webpack.dev.config.js --colors --port 9008",
"build:site": "gulp build && webpack -p --config webpack.prod.config.js",
"build:prebuilt": "gulp build && webpack -p --config webpack.prebuilt.config.js",
"eslint": "eslint ./src/scripts/",
"pre-commit": "eslint",
"scsslint": "scss-lint src/styles/**/*.scss",
"clean": "rimraf ./dist && mkdir dist",
"copy:css": "cp -a src/styles dist/styles",
"compile:js": "node_modules/babel-cli/bin/babel.js src --out-dir dist --ignore scripts/index.js,scripts/router.js && node build",
"prebuild": "npm run eslint && npm run clean && npm run copy:css",
"build": "npm run compile:js && npm publish --verbose",
"prepublish": "npm config set registry http://registry.npmjs.org",
"postpublish": "npm config set registry https://registry.npm.taobao.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewDadaFE/vue-impression.git"
},
"keywords": [
"Vue 2.0",
"UI"
],
"author": "NewDadaFE",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewDadaFE/vue-impression/issues"
},
"homepage": "https://github.com/NewDadaFE/vue-impression#readme",
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.2.8",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-transform-vue-jsx": "^3.2.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-vue": "^0.1.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.0",
"eslint": "^3.10.2",
"eslint-config-vue-impression": "^2.1.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean": "^0.3.2",
"gulp-cssmin": "^0.1.7",
"gulp-imagemin": "^3.1.1",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-run-sequence": "^0.3.2",
"gulp-sass": "^2.3.2",
"gulp-watch": "^4.3.11",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"node-sass": "^3.13.0",
"url-loader": "^0.5.7",
"vue-html-loader": "^1.2.3",
"vue-loader": "^10.0.0",
"vue-router": "^2.1.1",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.1.10",
"webpack": "^1.13.3",
"webpack-dashboard": "^0.2.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.2",
"webpack-merge": "^0.17.0"
},
"peerDependencies": {
"vue": "^2.1.10",
"vue-template-compiler": "^2.1.10"
},
"dependencies": {
"vue": "^2.1.10"
}
}