-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.43 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
104
105
106
107
108
109
{
"name": "vue-burger",
"version": "1.1.0",
"main": "dist/vue-burger.js",
"description": "Vue.js component/plugin for Hamburgers - Tasty CSS-animated hamburgers",
"author": {
"name": "Zdravko Ćurić",
"url": "https://github.com/zcuric"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcuric/vue-burger.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zcuric/vue-burger/issues"
},
"keywords": [
"vue",
"menu",
"hamburger menu",
"menu icon",
"animation",
"component",
"vue plugin"
],
"scripts": {
"chglog": "git-chglog -o CHANGELOG.md",
"serve": "vue-cli-service serve ./example/main.js",
"build": "bili",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build:example": "vue-cli-service build ./example/main.js --dest ./example/dist",
"prebuild": "rimraf dist",
"prepare": "npm run build",
"publish:ghp": "npm run build:example && git add example/dist && git commit -m 'Publish example' && git subtree push --prefix dist origin gh-pages"
},
"files": [
"dist"
],
"dependencies": {
"hamburgers": "^1.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-unit-jest": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.1.0",
"bili": "^4.8.1",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"rimraf": "^3.0.2",
"rollup-plugin-vue": "4.3.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": ">= 2.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue,scss}": [
"npm run lint",
"git add"
]
}
}