forked from morkro/vue-a11y-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "vue-a11y-dialog",
"description": "Vue.js component wrapping for a11y-dialog",
"version": "1.0.0",
"homepage": "https://github.com/morkro/vue-a11y-dialog",
"license": "MIT",
"author": "Moritz Kröger (https://moritz.berlin)",
"private": false,
"main": "dist/vue-a11y-dialog.js",
"files": [
"dist/vue-a11y-dialog.js"
],
"keywords": [
"modal",
"dialog",
"accessibility",
"a11y",
"focus",
"vue",
"component"
],
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prepublishOnly": "npm run build",
"prebuild": "npm run lint && npm run test",
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/morkro/vue-a11y-dialog"
},
"dependencies": {
"a11y-dialog": "^6.0.1"
},
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.31",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-preset-env": "^1.7.0",
"eslint": "^7.21.0",
"eslint-plugin-vue": "^7.6.0",
"jest": "^26.6.3",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.1.6",
"standard": "^16.0.3",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
}
}