-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.57 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
{
"name": "deep-focus-trap",
"version": "0.0.3",
"description": "A focus trap library that pierces that shadow dom. So you can use it with native web components. Deep Focus Trap is a lightweight library written in vanilla js with only one dependency (that is tree-shakable if not in use).",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./shadow-dom": "./src/index.js",
"./dom": "./src/focus-trap.js",
"./focus-trap": "./src/focus-trap.js"
},
"scripts": {
"build": "npx rollup -c",
"bump": "npx rollup -c && npm version patch --no-git-tag-version",
"docs": "npx jsdoc2md ./src/focus-trap.js ./src/index.js > docs.md",
"format": "npx prettier --write src/*.js",
"format:check": "npx prettier -c src/*.js",
"lint": "npx eslint src/index.js",
"lint:fix": "npx eslint --fix src/index.js",
"test": "npx jest",
"test:coverage": "npx jest --config jestconfig.json",
"serve": "npx vite"
},
"browserslist": [
"defaults",
"not IE 11"
],
"files": [
"README.md",
"LICENSE",
"src/focus-trap.js",
"src/index.js",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TheBeyondGroup/deep-focus-trap.git"
},
"files": [
"readme.md",
"LICENSE",
"src",
"dist"
],
"keywords": [
"focus",
"accessibility",
"trap",
"capture",
"keyboard",
"modal",
"ADA",
"compliance",
"ShadowDOM",
"Shadow",
"DOM",
"Web Components",
"tabbable",
"javascript",
"JS",
"A11Y",
"deep",
"lit",
"lit-element"
],
"author": {
"name": "Sean McQuaid"
},
"bugs": {
"url": "https://github.com/TheBeyondGroup/deep-focus-trap/issues"
},
"homepage": "https://github.com/TheBeyondGroup/deep-focus-trap#readme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-node-resolve": "^13.2.1",
"autoprefixer": "^10.4.7",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.3",
"jsdoc-to-markdown": "^7.1.1",
"prettier": "^2.6.2",
"rollup": "^2.71.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.0.24",
"vite": "^2.9.8"
},
"dependencies": {
"shadow-dom-utils": "^0.5.0"
}
}