-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "@stnekroman/aws-lambda-resource-remap",
"version": "1.0.5",
"description": "Magic tool, which generates new Cloudformation file from given one, but changing code location for lambdas. Allowing them to run via SAM CLI with Docker in WSL from Windows host.",
"author": {
"name": "StNekroman",
"email": "StNekroman@gmail.com"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/StNekroman/aws-lambda-resource-remap.git"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"aws-lambda-resource-remap": "./dist/index.js"
},
"keywords": [
"aws",
"lambda",
"sam",
"sam",
"cli",
"code",
"resource",
"remap",
"map",
"remapping",
"wsl",
"docker"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --noEmit && esbuild ./src/index.ts --bundle --platform=node --outfile=./dist/index.js --external:constructs --external:aws-cdk-lib",
"test": "yarn build && jest",
"lint": "eslint ./src",
"npm-publish": "npm publish --access public",
"npm-publish-github": "npm publish --access public --registry=https://npm.pkg.github.com"
},
"dependencies": {
"ts-command-line-args": "2.5.1"
},
"peerDependencies": {
"constructs": "^10.3.0",
"aws-cdk-lib": "^2.159.1"
},
"devDependencies": {
"constructs": "^10.3.0",
"aws-cdk-lib": "^2.159.1",
"@eslint/js": "^9.9.0",
"@jest/globals": "29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.14.14",
"eslint": "^9.9.0",
"jest": "29.7.0",
"rimraf": "5.0.10",
"ts-jest": "29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"esbuild": "0.23.1"
}
}