-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@openaddresses/batch-schema",
"type": "module",
"root": true,
"main": "dist/index.js",
"types": "index.ts",
"version": "10.12.1",
"description": "Strongly Validated JSON Schema support for address",
"repository": "[email protected]:openaddresses/batch-schema",
"author": "ingalls <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "ts-node-test test/**.test.ts",
"lint": "eslint index.ts lib/ test/",
"build": "tsc",
"doc": "typedoc index.ts"
},
"dependencies": {
"@openaddresses/batch-error": "^2.9.0",
"@sinclair/typebox": "^0.34.0",
"@types/body-parser": "^1.19.5",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"body-parser": "^1.20.0",
"express": "^5.0.0",
"glob": "^11.0.0",
"morgan": "^1.10.0",
"openapi-types": "^12.1.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"eslint": "^9.0.0",
"tape": "^5.3.1",
"ts-node-test": "^0.4.3",
"typedoc": "^0.27.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.3.0"
}
}