-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 924 Bytes
/
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
{
"name": "@jgarber/aria-collapsible",
"version": "7.1.0",
"description": "A Web Component that generates progressively-enhanced collapsible regions using ARIA States and Properties.",
"keywords": [
"accessibility",
"aria",
"custom elements",
"web components"
],
"homepage": "https://github.com/jgarber623/aria-collapsible",
"bugs": "https://github.com/jgarber623/aria-collapsible/issues",
"license": "MIT",
"author": "Jason Garber <[email protected]> (https://sixtwothree.org)",
"files": [
"aria-collapsible.js",
"example/*"
],
"type": "module",
"main": "aria-collapsible.js",
"directories": {
"example": "example"
},
"repository": "github:jgarber623/aria-collapsible",
"scripts": {
"lint": "eslint .",
"start": "npx http-server ."
},
"devDependencies": {
"@jgarber/eslint-config": "*"
},
"publishConfig": {
"access": "public"
}
}