@goldstack/utils-package-config-embedded 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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +56 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Goldstack Package Configuration Utilities
2
+
3
+ Utilities to read configuration files in a Goldstack package.
4
+
5
+ You can create Goldstack projects with multiple projects using the [Goldstack Project Builder](https://goldstack.party/build).
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@goldstack/utils-package-config-embedded",
3
+ "version": "0.4.1",
4
+ "description": "Utilities for working with Goldstack package schemas to be used for embedded configuration.",
5
+ "keywords": [
6
+ "goldstack",
7
+ "utility",
8
+ "infrastructure",
9
+ "configuration",
10
+ "json",
11
+ "json schema"
12
+ ],
13
+ "homepage": "https://goldstack.party",
14
+ "bugs": {
15
+ "url": "https://github.com/goldstack/goldstack/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/goldstack/goldstack.git"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Max Rohde",
23
+ "sideEffects": false,
24
+ "main": "dist/src/utilsPackageConfigEmbedded.js",
25
+ "scripts": {
26
+ "build": "yarn clean && yarn compile",
27
+ "build:watch": "yarn clean && yarn compile-watch",
28
+ "clean": "rimraf ./dist",
29
+ "compile": "tsc -p tsconfig.json",
30
+ "compile-watch": "tsc -p tsconfig.json --watch",
31
+ "compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
32
+ "coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
33
+ "prepublishOnly": "yarn run build",
34
+ "publish": "utils-git changed --exec \"yarn npm publish $@\"",
35
+ "test-ci": "jest --passWithNoTests --config=./jest.config.js --runInBand",
36
+ "version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
37
+ "version:apply:force": "yarn version $@ && yarn version apply"
38
+ },
39
+ "dependencies": {
40
+ "@goldstack/infra": "0.3.36",
41
+ "@goldstack/utils-config": "0.3.33",
42
+ "@goldstack/utils-package": "0.3.38"
43
+ },
44
+ "devDependencies": {
45
+ "@goldstack/utils-git": "0.1.34",
46
+ "@types/jest": "^27.5.1",
47
+ "@types/node": "^17.0.33",
48
+ "jest": "^28.1.0",
49
+ "rimraf": "^3.0.2",
50
+ "ts-jest": "^28.0.2",
51
+ "typescript": "^4.6.4"
52
+ },
53
+ "publishConfig": {
54
+ "main": "dist/src/utilsPackageConfigEmbedded.js"
55
+ }
56
+ }