-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "eoapi-cdk",
"version": "7.4.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",
"semantic-release": "semantic-release",
"install:all": "npm ci && cd lib/database/lambda/pgbouncer-secret-updater && npm ci && cd ../../../../"
},
"keywords": [],
"author": {
"name": "Anthony Lukach",
"email": "[email protected]"
},
"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": {
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.7.23",
"jsii": "5.7.4",
"jsii-docgen": "10.6.1",
"jsii-pacmak": "1.106.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"aws-cdk-lib": "2.130.0",
"constructs": "10.3.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.114.1-alpha.0"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "2.114.1-alpha.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.114.1-alpha.0",
"aws-cdk-lib": "2.130.0",
"constructs": "10.3.0"
},
"peerDependencies": {
"aws-cdk-lib": "2.130.0",
"constructs": "10.3.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.114.1-alpha.0"
},
"release": {
"branches": [
"main",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}