-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
89 lines (89 loc) · 2.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-refetch",
"version": "5.0.0-0",
"description": "A simple, declarative, and composable way to fetch data for React components.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib; cp src/*.d.ts lib",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepare": "npm run clean && npm run lint && npm run build",
"test": "mocha --require @babel/register --recursive --require ./test/setup.js --exit",
"test:watch": "npm test -- --watch",
"test:cov": "nyc --reporter=lcov --reporter=text-summary --report-dir=./coverage npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/react-refetch.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"reactjs",
"fetch",
"data",
"ajax",
"hot",
"reload",
"hmr",
"live",
"edit"
],
"author": "Heroku",
"license": "MIT",
"bugs": {
"url": "https://github.com/heroku/react-refetch/issues"
},
"homepage": "https://github.com/heroku/react-refetch",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^7.16.0",
"expect": "^1.8.0",
"jsdom": "^7.2.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.3.4",
"typescript": "^3.7.2",
"whatwg-fetch": "*"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"invariant": "^2.2.4",
"warning": "^4.0.3"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
}
}