-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "fetch-paginate",
"description": "Get multiple pages from paginated APIs with fetch.",
"version": "6.1.0",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "AndersDJohnson/fetch-paginate",
"funding": "https://github.com/sponsors/AndersDJohnson",
"browserslist": [
"> .5%",
"last 2 versions"
],
"scripts": {
"test": "jest",
"build": "webpack && tsc",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.8.3",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/jest": "^25.1.4",
"@types/nock": "^11.1.0",
"@types/parse-link-header": "^1.0.0",
"babel-loader": "^8.0.6",
"cross-fetch": "^3.0.5",
"eslint": "^5.16.0",
"jest": "^25.1.0",
"nock": "^12.0.2",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"core-js": "^3.3.3",
"parse-link-header": "^2.0.0"
}
}