-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 859 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
36
37
{
"name": "focux",
"version": "0.2.0",
"description": "Detect :focus-within for better UX",
"author": "Ryan Van Etten",
"license": "CC0-1.0",
"main": "focux.js",
"scripts": {
"test": "npm-run-all --parallel test:html test:lint test:node",
"test:html": "html-validator --file=index.html --verbose",
"test:lint": "eslint .",
"test:node": "node test"
},
"homepage": "https://github.com/ryanve/focux",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanve/focux.git"
},
"bugs": {
"url": "https://github.com/ryanve/focux/issues"
},
"keywords": [
"accessibility",
"focus-within",
"javascript",
"selector",
"matches",
"focus",
"a11y",
"ux"
],
"devDependencies": {
"eslint": "^4.15.0",
"html-validator-cli": "^3.2.0",
"npm-run-all": "^4.1.2"
}
}