forked from andreasbm/focus-trap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "@ithaka/focus-trap",
"version": "2.0.1",
"license": "MIT",
"module": "index.js",
"author": "ITHAKA",
"description": "A lightweight web component that traps focus within a DOM node",
"bugs": {
"url": "https://github.com/ithaka/focus-trap/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ithaka/focus-trap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ithaka/focus-trap.git"
},
"keywords": [
"custom",
"elements",
"web",
"component",
"custom element",
"web component",
"focus",
"accessibility",
"dialog",
"focus trap",
"trap"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"ncu": "ncu -u -a && npm update && npm install",
"test": "karma start",
"b:dev": "rollup -c --environment NODE_ENV:dev",
"b:prod": "rollup -c --environment NODE_ENV:prod",
"s:dev": "rollup -c --watch --environment NODE_ENV:dev",
"s:prod": "rollup -c --watch --environment NODE_ENV:prod",
"s": "npm run s:dev",
"start": "npm run s",
"b:lib": "node pre-build.js && tsc -p tsconfig.build.json",
"readme": "node node_modules/.bin/readme generate",
"postversion": "npm run readme && npm run b:lib",
"publish:patch": "np patch --contents=dist --no-cleanup",
"publish:minor": "np minor --contents=dist --no-cleanup",
"publish:major": "np major --contents=dist --no-cleanup"
},
"devDependencies": {
"@appnest/readme": "^1.2.5",
"@appnest/web-config": "0.4.39"
}
}