-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.02 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
{
"name": "ryoko",
"version": "0.1.6",
"description": "a requestion lib based on the fetch native api",
"main": "dist/ryoko.cjs.js",
"types": "dist/index.d.ts",
"module": "dist/ryoko.esm.js",
"jsdelivr": "dist/ryoko.min.js",
"unpkg": "dist/ryoko.min.js",
"scripts": {
"format": "npx prettier --write src/**/*.ts",
"format:check": "npx prettier --check src/**/*.ts",
"test": "jest --detectOpenHandles",
"build:rollup": "rollup --config",
"build:tsc": "npx tsc -p .",
"build": "npm run build:rollup"
},
"keywords": [
"ryoko",
"fetch",
"response",
"abortController",
"request",
"demande",
"anfrage",
"guoxiaoyou",
"lib",
"node-fetch",
"whatwg-fetch",
"http",
"https",
"xhr",
"get",
"network"
],
"files": [
"dist",
"global.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/gejiuyuan/ryoko"
},
"private": false,
"email": "[email protected]",
"author": {
"name": "guoxiaoyou",
"url": "https://gejiuyuan.gitee.io"
},
"bugs": {
"url": "https://github.com/gejiuyuan/ryoko/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.35",
"@types/node-fetch": "^2.5.8",
"babel-jest": "^26.6.3",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"rollup": "^2.41.4",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"abort-controller": "^3.0.0",
"form-data": "^2.3.3",
"node-fetch": "^2.6.1"
}
}