forked from glennflanagan/react-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "react-collapsible",
"version": "1.4.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",
"author": "Glenn Flanagan <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^5.6.23",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.2.0",
"browser-sync": "^2.11.1",
"browserify": "^13.0.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.7",
"react-addons-transition-group": "^0.14.7",
"react-dom": "^0.14.7",
"react-tools": "^0.13.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"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"
},
"dependencies": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8"
}
}