This repository was archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@unfold/fetch-data",
"version": "0.5.0",
"description": "Declarative data fetching for Redux and React",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "eslint src",
"prebuild": "rm -rf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"postpublish": "git push origin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unfold/fetch-data.git"
},
"keywords": [
"fetch",
"react",
"redux",
"data",
"async"
],
"author": "Unfold",
"license": "ISC",
"bugs": {
"url": "https://github.com/unfold/fetch-data/issues"
},
"homepage": "https://github.com/unfold/fetch-data#readme",
"eslintConfig": {
"extends": "@unfold/eslint-config",
"rules": {
"import/no-unresolved": [2, { "ignore": ["react", "react-redux"] }],
"import/extensions": 0
}
},
"babel": {
"presets": [
"@unfold/babel-preset"
],
"plugins": [
"transform-runtime"
]
},
"devDependencies": {
"@unfold/eslint-config": "^2.0.1",
"chokidar": "^1.6.1",
"eslint": "^3.17.1",
"redux": "^3.6.0"
},
"dependencies": {
"@unfold/babel-preset": "^1.0.3",
"babel-cli": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"isomorphic-fetch": "^2.2.1",
"qs": "^6.4.0",
"retry": "^0.10.1"
},
"peerDependencies": {
"react": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0"
}
}