-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "fetch-mock-cache",
"version": "0.0.1",
"description": "Caching mock fetch implementation for all runtimes and frameworks.",
"main": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules --test --import tsx `glob 'src/**/*.spec.ts'`",
"test:all": "npm run test && npm run tsc && npm run lint",
"lint": "eslint src",
"prettier": "prettier -w src",
"build": "tsc",
"prepublishOnly": "npm run build",
"coverage": "node --experimental-vm-modules --test --import tsx --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info `glob 'src/**/*.spec.ts'`",
"ci": "tsc --noEmit && npm run lint && npm run coverage && cd tests/runtimes && ./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadicc/fetch-mock-cache.git"
},
"keywords": [
"fetch",
"mock",
"fetch-mock",
"node:test",
"vitest",
"jest",
"cache",
"bun",
"deno"
],
"author": "Gadi Cohen <dragon@wastelands.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gadicc/fetch-mock-cache/issues"
},
"homepage": "https://github.com/gadicc/fetch-mock-cache#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@sebbo2002/semantic-release-jsr": "^2.0.1",
"@types/debug": "^4.1.8",
"@types/node": "^20.4.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"expect": "^29.7.0",
"glob": "^11.0.0",
"globals": "^15.10.0",
"prettier": "^3.0.0",
"semantic-release": "^24.1.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"prettier": {},
"dependencies": {
"debug": "^4.3.4",
"filenamify-url": "2.1.2"
}
}