forked from glennflanagan/react-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "react-collapsible",
"version": "2.2.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/Collapsible.js",
"types": "./index.d.ts",
"author": "Glenn Flanagan <glenn@arctictiger.co.uk>",
"contributors": [
"Karl Taylor <karl_taylor@me.com",
"Rebeca Sarai <rebecasaraiaguiar@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel": "^5.6.23",
"babel-cli": "^6.11.4",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.28.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"extract-text-webpack-plugin": "^3.0.0",
"jest": "^22.4.3",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"sass-loader": "^6.0.6",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.11.2"
},
"repository": {
"type": "git",
"url": "https://github.com/glennflanagan/react-collapsible"
},
"bugs": {
"url": "https://github.com/glennflanagan/react-collapsible/issues"
},
"scripts": {
"build": "babel src/Collapsible.js > dist/Collapsible.js",
"prepublish": "npm run build",
"example": "node_modules/.bin/webpack-dev-server",
"test": "jest"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "~15 || ~16",
"react-dom": "~15 || ~16"
}
}