forked from lusaxweb/vuesax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "vuesax",
"version": "3.0.17",
"description": "Components for Vue js",
"license": "MIT",
"author": "ldrovira <luisdanielrovira8@gmail.com>",
"homepage": "https://lusaxweb.github.io/vuesax/#/",
"repository": "lusaxweb/vuesax",
"bugs": {
"url": "https://github.com/lusaxweb/vuesax/issues"
},
"keywords": [
"vuesax",
"vue",
"vuejs",
"vue-components",
"components",
"javascript",
"css"
],
"main": "dist/vuesax.common.js",
"unpkg": "dist/vuesax.common.js",
"private": false,
"scripts": {
"dev": "vuepress dev docs",
"serve": "vue-cli-service serve",
"build": "vue build -t lib src/index.js --name vuesax",
"lint": "vue-cli-service lint",
"v": "npm version patch",
"p": "npm publish",
"deploy": "npm run build & git add . & git commit -m 'deploy' & npm run v & npm run p && git push",
"docs:build": "vuepress build docs",
"docs:deploy": "sh deploy.sh"
},
"dependencies": {
"prefixfree": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.5.2",
"vuecode.js": "0.0.27",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.6",
"@vue/cli-plugin-eslint": "^3.0.0-beta.6",
"@vue/cli-service": "^3.0.0-beta.6",
"copy-webpack-plugin": "^4.5.1",
"vue-template-compiler": "^2.5.13"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"eslint:recommended"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}