-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
{
"name": "react-selffocus-element",
"version": "1.0.0",
"description": "A react component to focus on an element for accessibility.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"start": "webpack --watch",
"build": "webpack"
},
"jest": {
"setupFiles": [
"./tests/setupTests.js"
]
},
"peerDependencies": {
"react": ">15.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anubhavsrivastava/react-selffocus-a11y.git"
},
"keywords": [
"a11y",
"accessbility",
"web-accessibility",
"react-a11y",
"react-accessibility",
"a11y-focus"
],
"author": {
"name": "Anubhav Srivastava",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anubhavsrivastava/react-selffocus-a11y/issues"
},
"homepage": "https://github.com/anubhavsrivastava/react-selffocus-a11y#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}