-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "create-fetch",
"version": "3.3.0",
"description": "Utilities for custom fetch",
"repository": "ambar/create-fetch",
"license": "MIT",
"sideEffects": false,
"source": "src/index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"fetch",
"http",
"compose",
"middleware"
],
"scripts": {
"prepare": "npm run test && npm run build",
"lint": "recommended",
"dev": "rollup -c -w",
"build": "rollup -c",
"prebuild": "rm -rf dist/**",
"test": "jest --coverage",
"test:watch": "jest --watch --notify"
},
"jest": {
"preset": "es-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"cross-fetch/polyfill"
],
"snapshotSerializers": [
"./jest/FormDataSerializer",
"./jest/URLSearchParamsSerializer"
]
},
"devDependencies": {
"@types/jest": "^27.0.2",
"cross-fetch": "^3.0.1",
"es-jest": "^1.2.0",
"jest": "^27.0.6",
"recommended": "^0.0.7",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.3"
}
}