-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 977 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
40
41
42
43
{
"name": "react-fetch",
"description": "A component that fetches data from an api",
"version": "0.0.9",
"main": "./build/react-fetch.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"publish": "gulp publish:examples"
},
"repository": {
"type": "git",
"url": "https://github.com/zackify/react-fetch.git"
},
"keywords": [
"reactjs",
"fetch",
"input",
"component"
],
"browserify-shim": {
"react": "global:React"
},
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/zackify/react-fetch/issues"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-gh-pages": "^0.5.1",
"react-component-gulp-tasks": "^0.7.0"
},
"homepage": "https://github.com/zackify/react-fetch",
"dependencies": {
"isomorphic-fetch": "^2.1.0"
},
"peerDependencies": {
"react": ">=0.14.0 || >15.0.0"
}
}