-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 921 Bytes
/
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
{
"name": "lambda-remote-context",
"version": "3.0.1",
"description": "Lifecycle management (RemoteContext) and wrapping (RemoteClient) for third party adapters",
"types": "./types/index.d.ts",
"type": "module",
"repository": {
"url": "https://github.com/mindlapse/lambda-remote-context.git"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && ./scripts/fixup.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose"
},
"author": "Dave MacDonald <[email protected]>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.3.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
},
"keywords": ["lifecycle", "serverless"]
}