This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"name": "@egomobile/http-supertest",
"version": "0.7.1",
"description": "Sets up common and powerful test event listener for @egomobile/http-server with supertest under the hood.",
"main": "lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"sandbox": "nodemon --watch './sandbox.ts' --watch './sandbox/**/*.ts' --exec node -r ts-node/register --inspect=0.0.0.0:9229 ./sandbox/index.ts",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egomobile/node-http-supertest.git"
},
"keywords": [
"http server",
"rest",
"api",
"event driven",
"unit testing",
"supertest",
"query",
"parameter",
"body",
"header",
"regexp",
"string",
"binary",
"function",
"validator",
"validation",
"ego"
],
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"files": [
"index.d.ts",
"CHANGELOG.md",
"LICENSE",
"lib",
"!lib/**/__tests__/**/*",
"!lib/**/*.map",
"!lib/**/setupTests.*",
"README.md"
],
"dependencies": {
"filtrex": "3.0.0",
"ora": "5.4.1"
},
"devDependencies": {
"@egomobile/http-server": "^0.67.0",
"@egomobile/tsconfig": "^5.0.0",
"@types/node": "18.19.18",
"@types/supertest": "6.0.2",
"del-cli": "5.1.0",
"eslint": "8.57.0",
"eslint-config-ego": "^0.19.0",
"nodemon": "3.1.0",
"supertest": "6.3.4",
"ts-node": "10.9.2",
"typedoc": "0.25.8",
"typescript": "4.7.4"
},
"peerDependencies": {
"@egomobile/http-server": ">= 0.67.0",
"supertest": ">= 6.3.4"
}
}