-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "requestors",
"version": "0.1.2",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"jsnext:main": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gswysy/requestors.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config rollup.config.js"
},
"description": "A simple request library",
"keywords": [
"Requestor",
"Concurrency",
"Cache",
"Idempotent",
"serial",
"Retry"
],
"author": "gongshiwei",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/md5": "^2.3.5",
"md5": "^2.3.0",
"rollup": "^4.18.1",
"tslib": "^2.6.3"
}
}