-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "vue-component-template",
"version": "0.1.6",
"description": "vue组件模板",
"keywords": [
"vue",
"vuejs",
"rollup",
"eslint",
"gihub-pages",
"gihub-actions",
"template",
"component"
],
"private": false,
"author": "blryli",
"license": "MIT",
"main": "dist/vue-component-template.umd.js",
"module": "dist/vue-component-template.esm.js",
"unpkg": "dist/vue-component-template.min.js",
"scripts": {
"dev": "cross-env NODE_ENV=development rollup --config build/rollup.config.es.js --watch",
"build": "cross-env NODE_ENV=production npm run build:browser && npm run build:es && npm run build:umd",
"test": "npm run test:unit",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"demo:dev": "vue-cli-service serve",
"demo:build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/blryli/vue-component-template.git"
},
"bugs": {
"url": "https://github.com/blryli/vue-component-template/issues"
},
"homepage": "https://blryli.github.com/vue-component-template",
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"clean-css": "^4.2.1",
"core-js": "^3.4.3",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"highlight.js": "^9.17.1",
"mockjs": "^1.1.0",
"node-sass": "^4.12.0",
"rollup": "^1.27.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.0.0",
"sass-loader": "^8.0.0",
"screenfull": "^5.0.0",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}