-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "eoapi-cdk",
"version": "11.7.1",
"description": "A set of constructs deploying pgSTAC with CDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "jsii",
"dev": "run-p dev:*",
"dev:build": "jsii --watch",
"dev:docgen": "nodemon -w .jsii -e .jsii --exec npm run docgen",
"dev:package": "nodemon -w .jsii -e .jsii --exec npm run package",
"clean": "git clean -Xdf lib",
"package": "jsii-pacmak -v",
"docgen": "mkdir -p docs && jsii-docgen -o docs/index.md",
"test": "echo \"Error: no test specified\" && exit 1",
"install:all": "npm ci && cd lib/database/lambda/pgbouncer-secret-updater && npm ci && cd ../../../../"
},
"keywords": [],
"author": {
"name": "Anthony Lukach",
"email": "anthony@developmentseed.org"
},
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/eoapi-cdk.git"
},
"license": "ISC",
"stability": "experimental",
"jsii": {
"outdir": "dist",
"versionFormat": "full",
"targets": {
"python": {
"distName": "eoapi-cdk",
"module": "eoapi_cdk"
}
}
},
"devDependencies": {
"@types/node": "^26.0.0",
"aws-cdk-lib": "2.268.0",
"constructs": "10.5.0",
"jsii": "6.0.13",
"jsii-docgen": "10.12.6",
"jsii-pacmak": "1.140.0",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.220.0",
"constructs": "^10.4.2"
}
}