-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 961 Bytes
/
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
{
"name": "react-flex-carousel",
"version": "1.1.0",
"description": "A simple responsive Carousel powered by React and CSS Flexbox",
"main": "index.js",
"scripts": {
"prepublish": "babel --presets react carousel.js > index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kidwm/react-flex-carousel.git"
},
"keywords": [
"react",
"flexbox",
"carousel"
],
"author": "Chen-Heng Chang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kidwm/react-flex-carousel/issues"
},
"homepage": "https://github.com/kidwm/react-flex-carousel#readme",
"files": [
"index.js"
],
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0",
"react-dom": "^15.5.4 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-react": "^6.24.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}