This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-button-a11y",
"version": "4.1.2",
"description": "Make non-button elements accessible in React",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"repository": {
"type": "git",
"url": "[email protected]:rpearce/react-button-a11y.git"
},
"homepage": "https://github.com/rpearce/react-button-a11y",
"bugs": "https://github.com/rpearce/react-button-a11y/issues",
"author": "Robert Pearce <[email protected]>",
"license": "BSD-3",
"keywords": [
"accessibility",
"a11y",
"react",
"react-component"
],
"tags": [
"accessibility",
"a11y",
"react",
"react-component"
],
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"dist/"
],
"sideEffects": false,
"scripts": {
"build": "run-s clean build:js build:docs",
"build:docs": "browserify example/app.js -o docs/app.js -t [ babelify ]",
"build:js": "rollup -c rollup.config.js",
"clean": "rm -rf dist/",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint .",
"prepublishOnly": "run-p lint test && npm run build",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"all-contributors-cli": "^6.11.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"coveralls": "^3.0.9",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.27.14",
"rollup-plugin-auto-external": "^3.0.0-alpha.0",
"rollup-plugin-babel": "^4.3.3"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"dependencies": {
"react-with-forwarded-ref": "^0.3.0"
}
}