-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.8 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
{
"name": "prop-types-extra",
"version": "1.1.1",
"description": "React PropType Utilities",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib"
],
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint .",
"test": "npm run lint && jest",
"tdd": "jest --watch",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-bootstrap/prop-types-extra.git"
},
"prettier": {
"singleQuote": true
},
"keywords": [
"react",
"proptypes"
],
"author": "Matthew L Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-bootstrap/prop-types-extra/issues"
},
"homepage": "https://github.com/react-bootstrap/prop-types-extra#readme",
"jest": {
"roots": [
"<rootDir>/test"
],
"testRegex": "test\\.js",
"setupFilesAfterEnv": [
"./test/test-setup.js"
]
},
"peerDependencies": {
"react": ">=16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.7",
"dirty-chai": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^27.5.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"release-script": "^1.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"react-is": "^17.0.1",
"warning": "^4.0.3"
}
}