-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "keq",
"version": "2.8.10",
"description": "Request API write by Typescript for flexibility, readability, and a low learning curve.",
"keywords": [
"request",
"superagent",
"fetch",
"node",
"nodejs",
"browser",
"middleware",
"middlewares",
"axios",
"got"
],
"license": "MIT",
"author": "Val.istar.Guo <[email protected]>",
"main": "dist/umd/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
"require": "./dist/umd/src/index.js",
"import": "./dist/esm/src/index.js"
},
"homepage": "https://github.com/keq-request/keq#readme",
"bugs": {
"url": "https://github.com/keq-request/keq/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keq-request/keq.git"
},
"scripts": {
"build": "npm run clean && ./build/build.sh",
"clean": "rm -rf ./dist/*",
"dev": "npm run clean && ./build/watch.sh",
"prepare": "ts-patch install -s && is-ci || husky",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"test": "jest"
},
"dependencies": {
"fastq": "^1.17.1",
"minimatch": "^9.0.4",
"mitt": "^3.0.1",
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@buka/eslint-config": "^2.1.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@types/clone": "^2.1.4",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.14.1",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.0",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.5.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}