-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "vue-accessibility-toolbar",
"version": "0.1.0",
"private": false,
"author": {
"name": "Wolfgang Wohanka",
"email": "w.wohanka@gmail.com",
"url": "https://github.com/hendrixfan"
},
"scripts": {
"serve": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"lint": "vue-cli-service lint",
"doc:build": "npx vuedoc.md --section API --output ./README.md ./src/components/AccessibilityToolbar.vue",
"prepublishOnly": "npm run lint && npm run build && npm run styleguide:build && npm run doc:build",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build"
},
"main": "src/index.js",
"dependencies": {
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vuedoc/md": "^1.5.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"component-fixture": "^0.4.1",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"sass-loader": "^7.1.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.1.0",
"vue-cli-plugin-component": "^1.10.5",
"vue-loader": "^15.7.1",
"vue-styleguidist": "^1.7.13",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/hendrixfan/vue-accessibility-toolbar/issues"
},
"keywords": [
"vue",
"accessibility",
"toolbar",
"component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hendrixfan/vue-accessibility-toolbar"
}
}