-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.08 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
97
98
99
100
101
102
103
{
"name": "nova-vue",
"description": "An enterprise-class UI design language and Vue components implementation",
"version": "0.4.7",
"author": {
"name": "em2046",
"email": "[email protected]"
},
"keywords": [
"nova",
"component",
"components",
"design",
"framework",
"frontend",
"vue",
"vue-component",
"ui"
],
"license": "MIT",
"files": [
"dist"
],
"main": "dist/nova.umd.js",
"module": "dist/nova.esm.js",
"scripts": {
"serve": "vue-cli-service serve",
"icon-entity": "gulp -f gulpfile.esm.js iconEntity",
"icon-component": "node -r esm build/scripts/icon-component.js",
"build": "npm run build-webpack && npm run build-rollup && npm run build-style",
"build-icon": "npm run icon-entity && npm run icon-component",
"build-style": "gulp -f gulpfile.esm.js extractStyle",
"build-rollup": "rollup --config build/rollup/rollup.config.es.js",
"build-webpack": "vue-cli-service build --target lib --name nova src/index.js",
"build-demo": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepublishOnly": "npm run lint && npm run build",
"publish": "npm run docs:build"
},
"repository": {
"type": "git",
"url": "https://github.com/LVMM-PC/nova-vue"
},
"bugs": {
"url": "https://github.com/LVMM-PC/nova-vue/issues"
},
"homepage": "http://nova-vue.em2046.com/",
"dependencies": {
"@vue/composition-api": "^0.5.0",
"core-js": "^3.6.4",
"dayjs": "^1.8.21",
"lodash": "^4.17.15",
"portal-vue": "^2.1.7",
"vue": "^2.6.11",
"vue-client-only": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@rgrove/parse-xml": "^2.0.2",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-json": "^4.0.2",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"del": "^5.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"esm": "^3.2.25",
"flush-promises": "^1.0.2",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-footer": "^2.0.2",
"gulp-header": "^2.0.9",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"less-plugin-autoprefix": "^2.0.0",
"mockdate": "^2.0.5",
"prettier": "^1.19.1",
"rollup": "^2.0.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-vue": "^5.1.6",
"svgo": "^1.3.2",
"through2": "^3.0.1",
"vue-router": "^3.1.5",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.3.1"
}
}