This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
{
"name": "mocha-cassettes",
"version": "1.4.0",
"description": "Record HTTP interactions in your Mocha tests",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bodrovis/mocha-cassettes.git"
},
"keywords": [
"vcr",
"mocha",
"test",
"record",
"http",
"cassettes"
],
"scripts": {
"build": "tsc",
"test": "tsc && ts-mocha -p tsconfig.json --type-check --recursive test/**/*.spec.ts --timeout 5000",
"lint": "npx @biomejs/biome check ./",
"lint:fix": "npx @biomejs/biome check --write ./",
"lint:fix:unsafe": "npx @biomejs/biome check --write --unsafe ./"
},
"dependencies": {
"mocha": "^10.0.0",
"nock": "^13.0.6",
"rimraf": "^6.0.1",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^10.0.8",
"axios": "^1.0.0",
"chai": "^5.1.1",
"express": "^4.16.4",
"source-map-support": "^0.5.19",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"directories": {
"lib": "./src",
"test": "./test"
},
"homepage": "https://github.com/bodrovis/mocha-cassettes#readme",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"maintainers": [
{
"name": "Ilya Krukowski"
},
{
"name": "Roman Kutanov"
}
],
"bugs": {
"url": "https://github.com/bodrovis/mocha-cassettes/issues",
"email": "[email protected]"
},
"engines": {
"node": ">= 10"
}
}