-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.73 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": "supertest-rewrite-json-body",
"description": "Rewrite your supertest body to create reliable tests!",
"version": "1.0.1",
"scripts": {
"test": "nyc mocha",
"test:mocha": "mocha"
},
"repository": "https://github.com/someimportantcompany/supertest-rewrite-json-body.git",
"author": "jdrydn <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"bugs": "https://github.com/someimportantcompany/supertest-rewrite-json-body/issues",
"homepage": "https://github.com/someimportantcompany/supertest-rewrite-json-body",
"main": "./index.cjs",
"types": "./index.d.ts",
"files": [
"./*.cjs",
"./*.d.ts"
],
"dependencies": {
"flat": "^5.0.2",
"lodash.set": "^4.3.2",
"micromatch": "^4.0.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/flat": "^5.0.2",
"@types/koa": "^2.13.6",
"@types/lodash.set": "^4.3.7",
"@types/micromatch": "^4.0.2",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.17",
"express": "^4.18.2",
"koa": "^2.14.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"validator": "^13.9.0",
"yup": "^1.2.0"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"mocha": {
"exit": true,
"recursive": true,
"require": [
"ts-node/register"
],
"reporter": "spec",
"ignore": [
"**/node_modules"
],
"spec": [
"./{,!(node_modules)/**}/*.test.{,+(js|ts)}"
]
},
"nyc": {
"exclude": [
"*.test.js",
"**/*.test.js",
"*.test.ts",
"**/*.test.ts",
"test/"
],
"reporter": [
"lcov",
"text"
]
}
}