-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "keq-headers",
"version": "2.0.4",
"description": "Set/Append headers to request.",
"keywords": [
"keq",
"header",
"headers",
"set",
"append",
"insert"
],
"homepage": "https://github.com/keq-request/keq-headers#readme",
"bugs": {
"url": "https://github.com/keq-request/keq-headers/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/keq-request/keq-headers.git"
},
"license": "MIT",
"author": "Val.istar.Guo <val.istar.guo@gmail.com>",
"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"
},
"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"
},
"devDependencies": {
"@buka/eslint-config": "^2.1.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@types/node": "^20.14.1",
"eslint": "^9.12.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"keq": "^2.6.10",
"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.4.7"
},
"peerDependencies": {
"keq": "^2"
}
}