This repository has been archived by the owner on Apr 7, 2019. It is now read-only.
forked from theKashey/react-focus-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-focus-lock",
"version": "1.11.0",
"description": "It is a trap! (for a focus)",
"main": "dist/index.js",
"types": "react-focus-lock.d.ts",
"scripts": {
"build": "babel src -d dist",
"test": "npm run test:pick -- '_tests/**/*spec.js'",
"test:pick": "BABEL_ENV=test mocha --require _tests/spinup/scaffolding --compilers js:babel-core/register -r jsdom-global/register",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"package-self": "package-self",
"size": "npm run build && size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/react-focus-lock.git"
},
"keywords": [
"react",
"focus",
"lock",
"trap",
"tabbable"
],
"author": "theKashey <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/theKashey/react-focus-lock/issues"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.14",
"@storybook/addon-links": "^3.2.14",
"@storybook/react": "^3.2.14",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.0",
"chai-enzyme": "^1.0.0-beta.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.3.0",
"jsdom": "11.1.0",
"jsdom-global": "3.0.2",
"material-ui": "^0.20.0",
"mocha": "^3.4.2",
"package-self": "^1.1.1",
"react": "^16.2.0",
"react-compat": "^0.0.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^16.2.0",
"sinon": "3.2.1",
"size-limit": "^0.14.1"
},
"homepage": "https://github.com/theKashey/react-focus-lock#readme",
"dependencies": {
"focus-lock": "^0.3.0",
"prop-types": "^15.0.0",
"react-side-effect": "^1.1.3"
}
}