-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
89 lines (89 loc) · 2.93 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
{
"name": "vue-dialog-x",
"version": "0.2.6",
"main": "dist/vue-dialog-x.js",
"scripts": {
"test": "cross-env BABEL_ENV=test karma start ./test/unit/karma.conf.js",
"build": "webpack --config build/webpack.build.config.js",
"build:window": "webpack --config build/webpack.build.window.config.js",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.config.js",
"build:demo": "webpack --config build/webpack.demo.build.config.js",
"release": "npm run test && npm run build && npm run docs:build && npm run build:window && npm run build:demo && git add . && git commit . -m '发布新版本' && git push && npm publish",
"precommit": "npm run test",
"docs:dev": "vuepress dev docs/",
"docs:build": "vuepress build docs/"
},
"dependencies": {
"@vuepress/shared-utils": "^1.4.0",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.1"
},
"devDependencies": {
"@babel/polyfill": "^7.4.4",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"autoprefixer": "^9.6.1",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-istanbul": "4.1.6",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"core-js": "^2.6.5",
"coveralls": "^3.0.4",
"cross-env": "^5.2.0",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^3.0.1",
"git-pre-commit": "^2.1.4",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "2.5.2",
"karma": "^4.2.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coveralls": "^2.1.0",
"karma-jasmine": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^2.0.13",
"node-sass": "^4.14.1",
"phantomjs-prebuilt": "^2.1.16",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.20.2",
"transform-runtime": "^0.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"vue": "^2.6.11",
"vue-loader": "^15.9.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vue-test-utils": "^1.0.0-beta.11",
"vuepress": "^1.0.3",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}