forked from masahirompp/aws-cdk-webpack-lambda-function
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "aws-cdk-webpack-lambda-function",
"version": "0.6.0",
"description": "This library provides constructs for Node.js Lambda function bundled using webpack.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masahirompp/aws-cdk-webpack-lambda-function.git"
},
"keywords": [
"aws-cdk",
"lambda",
"webpack"
],
"author": "Masahiro Onohara <masahirompp@gmail.com> (https://github.com/masahirompp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/masahirompp/aws-cdk-webpack-lambda-function/issues"
},
"homepage": "https://github.com/masahirompp/aws-cdk-webpack-lambda-function#readme",
"peerDependencies": {
"aws-cdk-lib": "2.22.0",
"constructs": "^10.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@aws-cdk/assert": "2.22.0",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}