forked from focus-trap/focus-trap-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "focus-trap-react",
"version": "3.0.2",
"description": "A React component that traps focus.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"demo-bundle": "browserify demo/js -t babelify --extension=.jsx -o demo/demo-bundle.js",
"start": "budo demo/js/index.js:demo-bundle.js --dir demo --live -- -t babelify --extension=.jsx",
"test-dev": "zuul --local 8080 --open -- test/index.js",
"pretest": "npm run lint",
"test": "zuul -- test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/focus-trap-react.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"aria",
"accessibility",
"modal",
"dialog",
"focus",
"keyboard"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/focus-trap-react/issues"
},
"homepage": "https://github.com/davidtheclark/focus-trap-react#readme",
"devDependencies": {
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"budo": "^9.4.1",
"eslint": "^3.13.1",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"sinon": "^1.17.4",
"tape": "^4.5.1",
"zuul": "^3.10.1"
},
"dependencies": {
"focus-trap": "^2.0.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"files": [
"index.js"
],
"babel": {
"presets": [
"react"
]
}
}