forked from geist-org/vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.27 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
{
"name": "@zeit-ui/vue",
"version": "2.3.3",
"description": "A popular UI framework for Vue",
"scripts": {
"start": "vue-cli-service serve",
"build": "NODE_ENV=production vue-cli-service build",
"build:lib": "node scripts/build.js",
"clear": "rm -rf dist lib",
"lint": "xo",
"now-build": "node scripts/now-build.js && yarn run build && cp ./public/favicon.ico ./dist",
"release": "yarn run clear && yarn run build:lib && yarn publish --access public --non-interactive"
},
"pre-commit": [
"lint"
],
"xo": {
"extends": [
"lambdas/vue"
],
"rules": {
"prefer-object-spread": 0
},
"extensions": [
"vue",
"js"
],
"ignore": [
"scripts",
"lib",
"dist",
"public",
"examples"
]
},
"dependencies": {
"@zeit-ui/themes": "^1.0.0",
"@zeit-ui/typography": "^1.0.1",
"popper.js": "^1.15.0"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-service": "^3.9.2",
"@zeit-ui/vue-icons": "^3.0.0",
"babel-eslint": "^10.0.1",
"eslint-config-lambdas": "^0.2.3",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"pre-commit": "^1.2.2",
"prismjs": "^1.15.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser": "^3.14.1",
"vue": "^2.6.6",
"vue-auto": "^0.2.5",
"vue-cli-plugin-pug": "^1.0.7",
"vue-clipboard2": "^0.3.1",
"vue-markdown-loader": "^2.4.1",
"vue-prism-component": "^1.1.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.6.11",
"xo": "^0.24.0"
},
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"engines": {
"node": ">= 8.1.0",
"npm": ">= 5.0.0"
},
"files": [
"LICENSE",
"dist/",
"lib"
],
"keywords": [
"vue component",
"zeit",
"vue ui"
],
"license": "MIT",
"main": "dist/zeit-ui.common.js",
"module": "dist/zeit-ui.common.js",
"peerDependencies": {
"vue": "^2.5.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeit-ui/vue.git"
},
"style": "dist/zeit-ui.css",
"unpkg": "dist/zeit-ui.umd.js"
}