-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (44 loc) · 1.1 KB
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
{
"name": "request-any",
"version": "2.0.7",
"description": "一个跨平台支持ESM,CJS模块的Request请求函数",
"author": "'Changlon' <'changlong.a2@gmail.com'> (https://github.com/Changlon/)",
"license": "MIT",
"repository": "https://github.com/Changlon/request-any",
"main": "./dist/index.main.js",
"module": "./dist/index.module.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./dist/index.main.js",
"import": "./dist/index.module.js"
}
},
"files": [
"dist",
"index.d.ts",
"index.js",
"index.test.js"
],
"scripts": {
"build": "tsup index.js",
"watch": "npm run build -- --watch .",
"prepublishOnly": "npm run build",
"test": "mocha --require babel-register index.test.js -t 25000 "
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.3.6",
"mocha": "9.2.2",
"tsup": "5.12.4",
"typescript": "4.6.3"
},
"dependencies": {
"axios": "0.26.1",
"js-md5": "0.7.3",
"json-bigint": "1.0.0",
"qs": "6.9.6"
}
}