@goldstack/template-dynamodb-cli 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +67 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Goldstack DynamoDB Template Tools
|
|
2
|
+
|
|
3
|
+
This library provides an API and CLI for building Node.js modules that wrap a DynamoDB Table. These tools allow deploying the infrastructure for the table as well as a way to connect with the table across multiple environments (such as dev, staging and production).
|
|
4
|
+
|
|
5
|
+
For more information, see [DynamoDB Template](https://docs.goldstack.party/docs/templates/dynamodb).
|
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@goldstack/template-dynamodb-cli",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Utilities for building modules for DynamoDB access.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"goldstack",
|
|
7
|
+
"utility",
|
|
8
|
+
"infrastructure",
|
|
9
|
+
"dynamodb",
|
|
10
|
+
"aws",
|
|
11
|
+
"IaC",
|
|
12
|
+
"configuration"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://goldstack.party",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/goldstack/goldstack/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/goldstack/goldstack.git"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "Max Rohde",
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"main": "dist/src/templateDynamoDBCli.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "yarn clean && yarn compile",
|
|
28
|
+
"build:watch": "yarn clean && yarn compile-watch",
|
|
29
|
+
"clean": "rimraf ./dist",
|
|
30
|
+
"compile": "tsc -p tsconfig.json",
|
|
31
|
+
"compile-watch": "tsc -p tsconfig.json --watch",
|
|
32
|
+
"compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
|
|
33
|
+
"coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
|
|
34
|
+
"prepublishOnly": "yarn run build",
|
|
35
|
+
"publish": "utils-git changed --exec \"yarn npm publish $@\"",
|
|
36
|
+
"test-ci": "jest --passWithNoTests --config=./jest.config.js --runInBand",
|
|
37
|
+
"version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
|
|
38
|
+
"version:apply:force": "yarn version $@ && yarn version apply"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@goldstack/template-dynamodb": "0.1.11",
|
|
42
|
+
"@goldstack/utils-cli": "0.2.13",
|
|
43
|
+
"@goldstack/utils-package": "0.3.38",
|
|
44
|
+
"@goldstack/utils-package-config": "0.3.39",
|
|
45
|
+
"@goldstack/utils-sh": "0.4.31",
|
|
46
|
+
"@goldstack/utils-terraform": "0.3.68",
|
|
47
|
+
"@goldstack/utils-terraform-aws": "0.3.67",
|
|
48
|
+
"umzug": "^3.1.1",
|
|
49
|
+
"yargs": "^15.4.1"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@goldstack/utils-docs-cli": "0.3.11",
|
|
53
|
+
"@goldstack/utils-git": "0.1.34",
|
|
54
|
+
"@goldstack/utils-package-config-generate": "0.2.14",
|
|
55
|
+
"@types/jest": "^27.5.1",
|
|
56
|
+
"@types/node": "^17.0.33",
|
|
57
|
+
"@types/yargs": "^15.0.5",
|
|
58
|
+
"jest": "^28.1.0",
|
|
59
|
+
"rimraf": "^3.0.2",
|
|
60
|
+
"ts-jest": "^28.0.2",
|
|
61
|
+
"ts-node": "^10.7.0",
|
|
62
|
+
"typescript": "^4.6.4"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"main": "dist/src/templateDynamoDBCli.js"
|
|
66
|
+
}
|
|
67
|
+
}
|