forked from KittyGiraudel/a11y-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
19 lines (19 loc) · 861 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "accessible-modal-dialog",
"version": "1.0.0",
"description": "A tiny script to make modal dialogs accessible to assistive technology users.",
"homepage": "https://github.com/edenspiekermann/accessible-modal-dialog",
"main": "accessible-modal-dialog.js",
"keywords": ["modal", "dialog", "accessibility", "a11y", "focus"],
"author": "Hugo Giraudel <[email protected]> (www.edenspiekermann.com/people/hugo-giraudel)",
"files": ["accessible-modal-dialog.js"],
"scripts": {
"example": "cp accessible-modal-dialog.js example/ && git subtree push --prefix example origin gh-pages",
"lint": "semistandard accessible-modal-dialog.js",
"minify": "uglifyjs accessible-modal-dialog.js -o accessible-modal-dialog.min.js -c -m"
},
"devDependencies": {
"semistandard": "^7.0.5",
"uglify-js": "^2.6.1"
}
}