-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "express-jdt-validator-middleware",
"version": "1.0.2",
"description": "Express middleware for validating and parsing against JTD schema. A typescript package.",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "tap --ts",
"test-validator": "tap --ts --invert --grep=Integrate",
"test-integration": "tap --ts --grep=Integrate",
"test-debugger": "tap --ts --debug --no-timeout",
"test-debugger-validator": "tap --ts --debug --timeout=0 --invert --grep=Integrate",
"test-debugger-integration": "tap --ts --debug --no-timeout --grep=Integrate",
"lint": "eslint \"src/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/Ryxai/express-jdt-validator-middleware.git"
},
"keywords": [
"express",
"jdt",
"validate",
"validation",
"ajv",
"validator",
"parser"
],
"author": "Ryxai",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ryxai/express-jdt-validator-middleware/issues"
},
"homepage": "https://github.com/Ryxai/express-jdt-validator-middleware#readme",
"dependencies": {
"@types/express": "^4.17.13",
"ajv": "^8.11.0",
"body-parser": "^1.20.0",
"simple-get": "^4.0.1"
},
"devDependencies": {
"@types/node": "^17.0.33",
"@types/tap": "^15.0.7",
"express": "^4.18.1",
"tap": "^16.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}