-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "tab-fixation",
"version": "2.0.0",
"description": "A small Javascript library to focus trap a user on your website, to help comply with W3C accessibility guidelines.",
"main": "dist/index.min.js",
"module": "dist/index.esm.js",
"bundle": "dist/index.umd.js",
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"dev": "rollup -c --environment NODE_ENV:development",
"test": "eslint src/**/*.js",
"test-js": "eslint src/**/*.js"
},
"browserslist": [
"chrome 106",
"edge 98",
"firefox 105",
"ios_saf 15",
"opera 92",
"safari 15"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codedbyglenden/tab-fixation.git"
},
"keywords": [
"W3C",
"Focus Trap",
"Accessibility",
"Vanilla JS",
"JavaScript",
"focus",
"lock",
"trap",
"tabbable"
],
"author": "CodedByGlenden",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/codedbyglenden/tab-fixation/issues"
},
"homepage": "https://github.com/codedbyglenden/tab-fixation#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^24.0.1",
"eslint": "^8.34.0",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"dist"
]
}