-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "@ment-labs/focus-trap",
"version": "2.0.0",
"description": "A JavaScript utility for effective focus trapping within a specified element.",
"module": "dist/focus-trap.js",
"main": "dist/focus-trap.js",
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ment-labs/focus-trap.git"
},
"keywords": [
"accessibility",
"A11Y",
"Focus Trap",
"Focus Trapping"
],
"author": "Ment Labs",
"contributors": [
"Bruno Prieto <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ment-labs/focus-trap/issues"
},
"homepage": "https://github.com/ment-labs/focus-trap#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist/*",
"build": "bin/build.js",
"watch": "esbuild --watch --bundle --format=esm --outfile=dist/focus-trap.js src/index.js",
"release": "npm run build && npm publish",
"start": "node tests/server.mjs",
"test": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"esbuild": "^0.21.5",
"express": "^4.19.2"
}
}