-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "react-collapsible",
"version": "2.10.0",
"description": "React component to wrap content in Collapsible element with trigger to open and close.",
"keywords": [
"react-component",
"react",
"collapse",
"collapsible",
"accordion"
],
"main": "dist/index.js",
"types": "./index.d.ts",
"author": "Glenn Flanagan <[email protected]>",
"contributors": [
"Karl Taylor <[email protected]>",
"Rebeca Sarai <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@types/react": "^16.13.1",
"babel-loader": "^8.1.0",
"babel-preset-react": "^6.11.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"repository": {
"type": "git",
"url": "https://github.com/glennflanagan/react-collapsible"
},
"bugs": {
"url": "https://github.com/glennflanagan/react-collapsible/issues"
},
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"prepare": "npm run build",
"test": "jest"
},
"peerDependencies": {
"react": "~15 || ~16 || ~17 || ~18",
"react-dom": "~15 || ~16 || ~17 || ~18"
}
}