-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
66 lines (66 loc) · 1.61 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
{
"name": "vue-nav-tabs",
"version": "0.5.7",
"description": "A vue based tab component",
"repository": {
"url": "cristijora/vue-tabs",
"type": "git"
},
"main": "dist/vue-tabs.common.js",
"unpkg": "dist/vue-tabs",
"poi": {
"entry": "dev/main.js",
"dist": "dev/dist",
"homepage": "/vue-tabs/"
},
"files": [
"dist",
"themes"
],
"scripts": {
"test": "echo 'no tests!' && npm run lint",
"prepublish": "npm run build",
"lint": "xo",
"build:css": "node-sass themes/ -o themes/ && node-sass themes/vue-tabs.scss dist/vue-tabs.min.css --output-style compressed",
"build": "bili --filename vue-tabs --format cjs --format umd --compress --banner --js babel && npm run build:css",
"build:example": "poi build",
"dev": "poi --port 5000",
"deploy": "npm run build:example && gh-pages -d example/dist"
},
"author": "cristij <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-preset-stage-2": "^6.24.1",
"babel-preset-vue-app": "^1.3.2",
"bili": "^0.18.2",
"bootstrap": "^3.3.7",
"eslint-config-rem": "^3.0.0",
"gh-pages": "^1.0.0",
"node-sass": "^4.6.0",
"poi": "^9.1.0",
"rollup-plugin-babel": "^2.7.1",
"sass-loader": "^6.0.6",
"vue": "^2.5.3",
"vue-github-badge": "^1.0.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.3",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem/prettier",
"ignores": [
"dev/**"
]
},
"babel": {
"presets": [
[
"vue-app",
{
"useBuiltIns": true
}
]
]
}
}