-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 902 Bytes
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
{
"name": "@linzjs/lambda",
"version": "4.2.0",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "git@github.com:linz/lambda-js.git",
"license": "MIT",
"author": {
"name": "Land Information New Zealand",
"url": "https://linz.govt.nz",
"organization": true
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@linzjs/style": "^5.0.0",
"@types/aws-lambda": "^8.10.119",
"@types/node": "^20.5.0",
"source-map-support": "^0.5.21"
},
"scripts": {
"build": "tsc",
"lint": "npx eslint . --fix --ignore-path .gitignore",
"test": "node --test \"build/src/**/*.test.js\""
},
"publishConfig": {
"access": "public"
},
"files": [
"build/src/**"
],
"dependencies": {
"find-my-way": "^7.3.1",
"pino": "^10.1.0",
"ulid": "^2.3.0"
}
}