-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "web-dialog",
"version": "0.0.11",
"description": "A highly accessible, customizable and lightweight dialog.",
"types": "index.d.ts",
"module": "index.js",
"main": "index.js",
"author": "Andreas Mehlsen",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/andreasbm/web-dialog/issues"
},
"homepage": "https://github.com/andreasbm/web-dialog#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasbm/web-dialog.git"
},
"keywords": [
"web",
"accessibility",
"accessible",
"a11y",
"dialog",
"modal",
"focus",
"trap",
"components",
"custom",
"elements",
"component",
"element"
],
"scripts": {
"b:dev": "rollup -c rollup.config.ts --environment NODE_ENV:dev",
"b:prod": "rollup -c rollup.config.ts --environment NODE_ENV:prod",
"s:dev": "rollup -c rollup.config.ts --watch --environment NODE_ENV:dev",
"s:prod": "rollup -c rollup.config.ts --watch --environment NODE_ENV:prod",
"s": "npm run s:dev",
"readme": "readme generate",
"b:lib": "rollup -c rollup.config.build.ts && npm run wca",
"ncu": "ncu -u -a && npm update && npm install",
"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",
"wca": "npx web-component-analyzer analyze src/lib --format json --outFile dist/custom-elements.json"
},
"devDependencies": {
"@appnest/web-config": "^0.5.0",
"@appnest/readme": "^1.2.6"
},
"dependencies": {
"@a11y/focus-trap": "^1.0.5"
},
"contributors": [
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4"
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/andreasbm/weightless/blob/master/CONTRIBUTING.md"
}
],
"license": "MIT"
}