-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"name": "react-simple-fetch",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config ./webpack.build.config.js",
"build:dev": "webpack --config ./webpack.dev.config.js",
"clean": "rimraf dist/*",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bebo/react-simple-fetch.git"
},
"keywords": [
"react",
"fetch",
"simple",
"wrapper"
],
"author": "Jonas Daniels",
"license": "MIT",
"bugs": {
"url": "https://github.com/bebo/react-simple-fetch/issues"
},
"homepage": "https://github.com/bebo/react-simple-fetch#readme",
"dependencies": {
},
"peerDependencies": {
"react": "^15.0.0-0",
"whatwg-fetch": "^1.0.0",
"deep-find": "0.0.0-alpha"
},
"devDependencies": {
"react": "^15.0.0-0",
"whatwg-fetch": "^1.0.0",
"deep-find": "0.0.0-alpha",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"webpack": "^1.13.2",
"rimraf": "^2.5.1"
}
}