-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "@tak-ps/etl",
"version": "6.2.0",
"description": "Helper library for building NodeJS based ETL Lambdas",
"main": "dist/index.js",
"type": "module",
"types": "index.ts",
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "exit 0",
"lint": "eslint index.ts",
"doc": "typedoc index.ts",
"build": "tsc --build",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tak-ps/etl-base.git"
},
"author": "Nick Ingalls <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tak-ps/etl-base/issues"
},
"homepage": "https://github.com/tak-ps/etl-base#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.26.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
},
"peerDependencies": {
"@tak-ps/node-cot": "^12.14.0"
},
"dependencies": {
"@sinclair/typebox": "^0.34.0",
"@types/geojson": "^7946.0.10",
"@types/jsonwebtoken": "^9.0.1",
"@types/minimist": "^1.2.5",
"jsonwebtoken": "^9.0.0",
"minimist": "^1.2.8",
"moment-timezone": "^0.5.45",
"undici": "^6.15.0"
}
}