This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
forked from glennflanagan/react-responsive-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "react-responsive-accordion",
"version": "1.0.0",
"description": "React accordion component which is 100% responsive.",
"keywords": [
"react-component",
"react",
"collapse",
"collapsible",
"accordion"
],
"main": "dist/Accordion.js",
"author": "Glenn Flanagan <glenn@arctictiger.co.uk>",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"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.0 || ^15.0.0-0",
"react-collapsible": "^1.3.0",
"react-dom": "^0.14.0 || ^15.0.0-0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-collapsible": "^1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/glennflanagan/react-responsive-accordion"
},
"bugs": {
"url": "https://github.com/glennflanagan/react-responsive-accordion/issues"
},
"scripts": {
"build": "babel src/Accordion.js > dist/Accordion.js",
"prepublish": "npm run build"
}
}