-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.56 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": "mentoss",
"version": "0.8.0",
"description": "A utility to mock fetch requests and responses.",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"!(*.js)": [
"prettier --write --ignore-unknown"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/",
"fmt": "prettier --write .",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test:unit": "mocha --exit tests/**/*.*",
"test:jsr": "npx jsr@latest publish --dry-run",
"test": "npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/mentoss.git"
},
"keywords": [
"fetch",
"testing",
"mocha",
"jest"
],
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/mocha": "^10.0.3",
"eslint": "^9.0.0",
"lint-staged": "15.4.3",
"mocha": "^11.0.0",
"openai": "^4.83.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"yorkie": "2.0.0"
},
"dependencies": {
"urlpattern-polyfill": "^10.0.0"
}
}