generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.34 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.34 KB
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
{
"name": "aws-lambda-ric",
"version": "4.0.2",
"description": "AWS Lambda Runtime Interface Client for Node.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-lambda-nodejs-runtime-interface-client.git"
},
"homepage": "https://github.com/aws/aws-lambda-nodejs-runtime-interface-client#readme",
"engines": {
"node": ">=22"
},
"type": "module",
"main": "index.mjs",
"bin": {
"aws-lambda-ric": "./index.mjs"
},
"scripts": {
"preinstall": "./scripts/preinstall.sh",
"postinstall": "./scripts/postinstall.sh",
"build:gyp": "node-gyp rebuild --directory=src/native",
"clean": "rm -rf dist coverage",
"build": "npm test && npm run compile && npm run pkg",
"build:container": "./scripts/build.sh",
"compile": "tsc",
"pkg": "node scripts/build.js",
"peek:container": "./scripts/peek.sh",
"peek:rie": "./scripts/rie.sh",
"peek:rie:mc": "./scripts/rie-mc.sh",
"peek:lambda": "./scripts/lambda-build.sh",
"test": "run-p test:all lint",
"test:all": "NODE_OPTIONS='--no-experimental-require-module --no-experimental-detect-module' vitest run --coverage",
"test:unit": "NODE_OPTIONS='--no-experimental-require-module --no-experimental-detect-module' vitest run src",
"test:integ": "NODE_OPTIONS='--no-experimental-require-module --no-experimental-detect-module' vitest run integration-tests",
"lint": "eslint --cache",
"lint:fix": "eslint --fix --cache"
},
"files": [
"index.mjs",
"deps/*.tar.xz",
"src/native/binding.gyp",
"src/native/rapid-client.cc",
"scripts/preinstall.sh",
"scripts/postinstall.sh",
"LICENSE",
"NOTICE",
"THIRD-PARTY-LICENSES",
"README.md",
"!**/*.test.ts"
],
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/coverage-v8": "^3.1.1",
"esbuild": "^0.25.5",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"typescript": "~5.4.5",
"vitest": "^3.1.1"
},
"dependencies": {
"@aws/lambda-invoke-store": "0.2.2",
"node-addon-api": "^8.3.1",
"node-gyp": "^11.2.0"
}
}