-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "cross-request-master",
"version": "4.6.1",
"description": "YApi 跨域请求扩展",
"private": true,
"types": "types/cross-request.d.ts",
"packageManager": "pnpm@10.7.1",
"scripts": {
"dev": "node scripts/dev.js",
"clawhub:sync": "bash scripts/clawhub-sync.sh --all",
"clawhub:sync:dry": "bash scripts/clawhub-sync.sh --dry-run",
"lint": "eslint *.js",
"lint:fix": "eslint *.js --fix",
"format": "prettier --write \"*.js\" \"*.json\" \"*.md\"",
"format:check": "prettier --check \"*.js\" \"*.json\" \"*.md\"",
"hooks:install": "git config core.hooksPath .githooks",
"release:check": "node scripts/check-release.js",
"publish:cli": "pnpm -C packages/yapi-mcp pub:release",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"chrome-extension",
"yapi",
"cors",
"cross-origin",
"api-testing"
],
"author": "leeguooooo",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"globals": "^16.5.0",
"prettier": "^3.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"*.js",
"!jquery-3.1.1.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
}
}