This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@10up/react-focus-trap-hoc",
"description": "Higher order component used to trap keyboard focus within a wrapped component.",
"license": "MIT",
"author": "Dominic Magnifico <dominicmagnifico@gmail.com>",
"homepage": "https://github.com/10up/react-focus-trap-hoc#readme",
"bugs": {
"url": "https://github.com/10up/react-focus-trap-hoc/issues"
},
"version": "1.0.1",
"main": "index",
"files": [
"*.md",
"dist",
"LICENSE",
"lib",
"src",
"index.js"
],
"keywords": [
"react",
"focus",
"trap",
"modal",
"accessibility",
"a11y"
],
"repository": {
"type": "git",
"url": "git@github.com:10up/react-focus-trap-hoc.git"
},
"readmeFilename": "README.md",
"scripts": {
"build": "npm run build:commonjs & npm run build:umd & npm run build:umd:min",
"build:commonjs": "mkdir -p lib && babel ./src -d lib",
"build:umd": "webpack dist/react-focus-trap-hoc.js",
"build:umd:min": "NODE_ENV=production webpack dist/react-focus-trap-hoc.min.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"webpack": "^2.7.0"
},
"peerDependencies": {
"prop-types": "^15.0.0-0 || ^16.0.0-0",
"react": "^15.0.0-0 || ^16.0.0-0"
}
}