forked from posva/focus-trap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
{
"name": "focus-trap-vue",
"version": "1.1.1",
"description": "Vue component to trap the focus within a DOM element",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.browser.esm.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"url": "https://esm.dev",
"email": "[email protected]"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "webpack-dev-server --env.mode=development",
"start": "webpack-dev-server --env.mode=production",
"demo:build": "webpack --env.mode=production --mode=production",
"lint": "echo prettier",
"pretest": "yarn run lint",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test start http-get://localhost:8080 cy:run",
"test": "yarn run build && yarn run test:e2e",
"prepublishOnly": "yarn run build"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"focus",
"trap",
"a11y",
"accessibility",
"modal",
"component",
"block",
"lock",
"vue"
],
"license": "MIT",
"devDependencies": {
"cypress": "^7.4.0",
"cypress-plugin-tab": "^1.0.1",
"focus-trap": "^6.0.1",
"html-webpack-plugin": "^4.0.1",
"rollup": "^2.0.3",
"rollup-plugin-alias": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"start-server-and-test": "^1.9.1",
"terser-webpack-plugin": "^4.0.0",
"ts-loader": "^8.0.0",
"typescript": "^4.0.2",
"vue": "^2.6.10",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/focus-trap-vue.git"
},
"bugs": {
"url": "https://github.com/posva/focus-trap-vue/issues"
},
"homepage": "https://github.com/posva/focus-trap-vue#readme",
"peerDependencies": {
"focus-trap": "^6.0.1",
"vue": "^2.6.0"
}
}