-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 KB
/
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
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
{
"name": "rust.aws-cdk-lambda",
"version": "1.2.1",
"description": "A CDK (v2) Construct Library for AWS Lambda in Rust",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rnag/rust.aws-cdk-lambda.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"publish": "npm run build && npm publish",
"test": "jest",
"c": "npm run checkAll",
"u": "npm run updateAll",
"checkAll": "ncu --cwd cdk-examples --deep",
"updateAll": "ncu -u --cwd cdk-examples --deep"
},
"keywords": [
"rust",
"aws",
"cdk",
"constructs",
"lambda"
],
"author": {
"name": "Ritvik Nag"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.4.0",
"fs-extra": "^11.1.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "~4.9.5"
},
"dependencies": {
"aws-cdk-lib": "^2.*",
"constructs": "^10.*",
"toml": "~3.0.0"
},
"peerDependencies": {
"aws-cdk-lib": "^2.*",
"constructs": "^10.*"
},
"optionalDependencies": {
"@ziglang/cli": "^0.0.11"
},
"homepage": "https://github.com/rnag/rust.aws-cdk-lambda",
"engines": {
"node": ">= 10.3.0"
},
"stability": "stable",
"maturity": "stable"
}