-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.46 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
{
"name": "bestfetch",
"version": "4.0.0",
"description": "A thin wrapper around fetch that prevents duplicate requests.",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf dist es tmp lib",
"test": "NODE_ENV=test jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesplease/bestfetch.git"
},
"keywords": [
"http",
"https",
"request",
"dedupe",
"deduplication",
"cache",
"caching",
"fetch",
"xhr",
"requests",
"performance",
"network",
"graphql",
"json",
"jsonapi",
"json-api",
"api",
"request",
"response",
"browser"
],
"author": "James Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesplease/bestfetch/issues"
},
"files": [
"dist",
"lib",
"es"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@rollup/plugin-replace": "^2.2.1",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.11",
"cross-env": "^5.1.3",
"fetch-mock": "^6.0.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"rimraf": "^2.6.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.3"
}
}