@thi.ng/resolve-map 5.0.8 → 5.1.3

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/CHANGELOG.md +143 -76
  2. package/package.json +77 -72
package/CHANGELOG.md CHANGED
@@ -1,147 +1,214 @@
1
1
  # Change Log
2
2
 
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [5.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@5.0.7...@thi.ng/resolve-map@5.0.8) (2021-11-10)
3
+ - **Last updated**: 2021-12-13T10:26:00Z
4
+ - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
7
5
 
8
- **Note:** Version bump only for package @thi.ng/resolve-map
6
+ All notable changes to this project will be documented in this file.
7
+ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
9
8
 
9
+ **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
+ and/or version bumps of transitive dependencies.
10
11
 
12
+ ## [5.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.1.0) (2021-11-17)
11
13
 
14
+ #### 🚀 Features
12
15
 
16
+ - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
17
+ Improving the overall build ergonomics
18
+ - introduced a tools workspaces
19
+ - imported it in all needed packages/examples
20
+ - inclusive project root
13
21
 
14
- ## [5.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@5.0.6...@thi.ng/resolve-map@5.0.7) (2021-11-03)
22
+ #### ♻️ Refactoring
15
23
 
16
- **Note:** Version bump only for package @thi.ng/resolve-map
24
+ - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
25
+ this commit reverts (partly) changes made in:
26
+ ef346d7a8753590dc9094108a3d861a8dbd5dd2c
27
+ overall purpose is better testament ergonomics:
28
+ instead of having to pass NODE_OPTIONS with every invocation
29
+ having a binary to handle this for us.
17
30
 
31
+ ### [5.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.0.1) (2021-10-13)
18
32
 
33
+ #### ♻️ Refactoring
19
34
 
35
+ - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
20
36
 
37
+ # [5.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@5.0.0) (2021-10-12)
21
38
 
22
- # [5.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.2.27...@thi.ng/resolve-map@5.0.0) (2021-10-12)
39
+ #### 🛑 Breaking changes
23
40
 
41
+ - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
42
+ - BREAKING CHANGE: discontinue CommonJS & UMD versions
43
+ - only ESM modules will be published from now on
44
+ - CJS obsolete due to ESM support in recent versions of node:
45
+ - i.e. launch NodeJS via:
46
+ - `node --experimental-specifier-resolution=node --experimental-repl-await`
47
+ - in the node REPL use `await import(...)` instead of `require()`
48
+ - UMD obsolete due to widespread browser support for ESM
49
+ Also:
50
+ - normalize/restructure/reorg all package.json files
51
+ - cleanup all build scripts, remove obsolete
52
+ - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
24
53
 
25
- ### Build System
54
+ #### ♻️ Refactoring
26
55
 
27
- * major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea9fab2a645d6c5f2bf2591459b939c09b6))
56
+ - update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
57
+ - largely related to recent updates/restructuring of these packages:
58
+ - api
59
+ - defmulti
60
+ - errors
61
+ - logger
62
+ - update imports ([138571a](https://github.com/thi-ng/umbrella/commit/138571a))
63
+ - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
64
+ - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
28
65
 
66
+ ### [4.2.9](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.2.9) (2020-12-07)
29
67
 
30
- ### BREAKING CHANGES
68
+ #### ♻️ Refactoring
31
69
 
32
- * discontinue CommonJS & UMD versions
70
+ - update type-only imports in various tests/pkgs ([3fd9c24](https://github.com/thi-ng/umbrella/commit/3fd9c24))
33
71
 
34
- - only ESM modules will be published from now on
35
- - CJS obsolete due to ESM support in recent versions of node:
36
- - i.e. launch NodeJS via:
37
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
38
- - in the node REPL use `await import(...)` instead of `require()`
39
- - UMD obsolete due to widespread browser support for ESM
72
+ ## [4.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.2.0) (2020-07-18)
40
73
 
41
- Also:
42
- - normalize/restructure/reorg all package.json files
43
- - cleanup all build scripts, remove obsolete
44
- - switch from mocha to @thi.ng/testament for all tests
74
+ #### 🚀 Features
45
75
 
76
+ - add support for custom lookup prefix ([bf89503](https://github.com/thi-ng/umbrella/commit/bf89503))
77
+ - add tests
46
78
 
79
+ ### [4.1.16](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.16) (2020-03-28)
47
80
 
81
+ #### ♻️ Refactoring
48
82
 
83
+ - update to new [@thi.ng/paths](https://github.com/thi-ng/umbrella/tree/main/packages/paths) API ([182b36b](https://github.com/thi-ng/umbrella/commit/182b36b))
49
84
 
85
+ ### [4.1.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.2) (2019-07-08)
50
86
 
51
- # [4.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.31...@thi.ng/resolve-map@4.2.0) (2020-07-18)
87
+ #### 🩹 Bug fixes
52
88
 
53
- ### Features
89
+ - fix [#97](https://github.com/thi-ng/umbrella/issues/97), update to consider trailing comma & whitespace ([de9532b](https://github.com/thi-ng/umbrella/commit/de9532b))
90
+ - add more tests
54
91
 
55
- - **resolve-map:** add support for custom lookup prefix ([bf89503](https://github.com/thi-ng/umbrella/commit/bf89503424887018d120d3960d9d86a992c31c91))
92
+ ### [4.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.1) (2019-07-08)
56
93
 
57
- ## [4.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.1...@thi.ng/resolve-map@4.1.2) (2019-07-08)
94
+ #### 🩹 Bug fixes
58
95
 
59
- ### Bug Fixes
96
+ - fix [#97](https://github.com/thi-ng/umbrella/issues/97), update fn arg destructuring ([e68dc19](https://github.com/thi-ng/umbrella/commit/e68dc19))
97
+ - update resolveFunction() to allow trailing comma in destructure form, e.g. `{ a, b, }`
98
+ - add test case
60
99
 
61
- - **resolve-map:** fix [#97](https://github.com/thi-ng/umbrella/issues/97), update to consider trailing comma & whitespace ([de9532b](https://github.com/thi-ng/umbrella/commit/de9532b))
100
+ ## [4.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.1.0) (2019-07-07)
62
101
 
63
- ## [4.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.1.0...@thi.ng/resolve-map@4.1.1) (2019-07-08)
102
+ #### 🚀 Features
64
103
 
65
- ### Bug Fixes
104
+ - enable TS strict compiler flags (refactor) ([7e7ff2a](https://github.com/thi-ng/umbrella/commit/7e7ff2a))
66
105
 
67
- - **resolve-map:** fix [#97](https://github.com/thi-ng/umbrella/issues/97), update fn arg destructuring ([e68dc19](https://github.com/thi-ng/umbrella/commit/e68dc19))
106
+ #### ♻️ Refactoring
68
107
 
69
- # [4.1.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@4.0.12...@thi.ng/resolve-map@4.1.0) (2019-07-07)
108
+ - address TS strictNullChecks flag ([fa7b252](https://github.com/thi-ng/umbrella/commit/fa7b252))
70
109
 
71
- ### Features
110
+ # [4.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@4.0.0) (2019-01-21)
72
111
 
73
- - **resolve-map:** enable TS strict compiler flags (refactor) ([7e7ff2a](https://github.com/thi-ng/umbrella/commit/7e7ff2a))
112
+ #### 🛑 Breaking changes
74
113
 
75
- # [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@3.0.16...@thi.ng/resolve-map@4.0.0) (2019-01-21)
114
+ - update package build scripts & outputs, imports in ~50 packages ([b54b703](https://github.com/thi-ng/umbrella/commit/b54b703))
115
+ - BREAKING CHANGE: enabled multi-outputs (ES6 modules, CJS, UMD)
116
+ - build scripts now first build ES6 modules in package root, then call
117
+ `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
118
+ - all imports MUST be updated to only refer to package level
119
+ (not individual files anymore). tree shaking in user land will get rid of
120
+ all unused imported symbols.
76
121
 
77
- ### Build System
122
+ ### [3.0.10](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.10) (2018-09-01)
78
123
 
79
- - update package build scripts & outputs, imports in ~50 packages ([b54b703](https://github.com/thi-ng/umbrella/commit/b54b703))
124
+ #### 🩹 Bug fixes
80
125
 
81
- ### BREAKING CHANGES
126
+ - deep resolve of yet unknown path values ([a710453](https://github.com/thi-ng/umbrella/commit/a710453))
82
127
 
83
- - enabled multi-outputs (ES6 modules, CJS, UMD)
84
- - build scripts now first build ES6 modules in package root, then call `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
85
- - all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.
128
+ ### [3.0.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.8) (2018-08-24)
86
129
 
87
- ## [3.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@3.0.9...@thi.ng/resolve-map@3.0.10) (2018-09-01)
130
+ #### ♻️ Refactoring
88
131
 
89
- ### Bug Fixes
132
+ - replace SEMAPHORE const w/ [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) def ([bea7a1f](https://github.com/thi-ng/umbrella/commit/bea7a1f))
90
133
 
91
- - **resolve-map:** deep resolve of yet unknown path values ([a710453](https://github.com/thi-ng/umbrella/commit/a710453))
134
+ ### [3.0.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.5) (2018-07-15)
92
135
 
93
- ## [3.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@3.0.4...@thi.ng/resolve-map@3.0.5) (2018-07-15)
136
+ #### 🩹 Bug fixes
94
137
 
95
- ### Bug Fixes
138
+ - add support for alt ES6 destructure form `{a: b}` ([2482945](https://github.com/thi-ng/umbrella/commit/2482945))
139
+ - also fixes issue w/ minimized builds
96
140
 
97
- - **resolve-map:** add support for alt ES6 destructure form `{a: b}` ([2482945](https://github.com/thi-ng/umbrella/commit/2482945))
141
+ # [3.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@3.0.0) (2018-06-07)
98
142
 
99
- # [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@2.0.6...@thi.ng/resolve-map@3.0.0) (2018-06-07)
143
+ #### 🛑 Breaking changes
100
144
 
101
- ### Features
145
+ - add cycle detection, fix edge cases ([e61c3b5](https://github.com/thi-ng/umbrella/commit/e61c3b5))
146
+ - add `resolve()` as main user function
147
+ - make `resolveMap()` private
148
+ - update _resolve() to keep track of active lookups
149
+ - implement cycle detection
150
+ - add markResolved() helper
151
+ - update resolveFunction() to mark all of its nested
152
+ values as resolved
153
+ - refactor resolvePath()
154
+ - update docs/readme
155
+ - add/update tests
156
+ - BREAKING CHANGE: `resolveMap()` renamed to `resolve()`, update docs
102
157
 
103
- - **resolve-map:** add cycle detection, fix edge cases ([e61c3b5](https://github.com/thi-ng/umbrella/commit/e61c3b5))
104
- - **resolve-map:** add ES6 destructuring shorthands for function vals ([57f1ed5](https://github.com/thi-ng/umbrella/commit/57f1ed5))
158
+ #### 🚀 Features
105
159
 
106
- ### BREAKING CHANGES
160
+ - add ES6 destructuring shorthands for function vals ([57f1ed5](https://github.com/thi-ng/umbrella/commit/57f1ed5))
161
+ - add _resolveFunction()
162
+ - add tests
163
+ - update docs & readme
107
164
 
108
- - **resolve-map:** `resolveMap()` renamed to `resolve()`, update docs
165
+ ### [2.0.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.6) (2018-06-06)
109
166
 
110
- ## [2.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@2.0.5...@thi.ng/resolve-map@2.0.6) (2018-06-06)
167
+ #### 🩹 Bug fixes
111
168
 
112
- ### Bug Fixes
169
+ - also use _resolvePath for plain lookups, optimize ([48c796f](https://github.com/thi-ng/umbrella/commit/48c796f))
170
+ - rename _resolveDeep => _resolvePath
171
+ - update docs
172
+ - add private _resolveDeep ([558f4f8](https://github.com/thi-ng/umbrella/commit/558f4f8))
173
+ - fixes resolution issue if a function dynamically created deep values
113
174
 
114
- - **resolve-map:** add private _resolveDeep ([558f4f8](https://github.com/thi-ng/umbrella/commit/558f4f8))
115
- - **resolve-map:** also use_resolvePath for plain lookups, optimize ([48c796f](https://github.com/thi-ng/umbrella/commit/48c796f))
175
+ #### ♻️ Refactoring
116
176
 
117
- # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@1.0.5...@thi.ng/resolve-map@2.0.0) (2018-05-09)
177
+ - export absPath(), add LookupPath type alias ([dc6e0ac](https://github.com/thi-ng/umbrella/commit/dc6e0ac))
118
178
 
119
- ### Code Refactoring
179
+ ### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.1) (2018-05-10)
120
180
 
121
- - **resolve-map:** fix [#21](https://github.com/thi-ng/umbrella/issues/21) ([5d2a3fe](https://github.com/thi-ng/umbrella/commit/5d2a3fe))
181
+ #### ♻️ Refactoring
122
182
 
123
- ### BREAKING CHANGES
183
+ - update deps & imports in all packages due to [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) split ([bc45636](https://github.com/thi-ng/umbrella/commit/bc45636))
124
184
 
125
- - **resolve-map:** update lookup path prefix & separators
126
- - lookup paths now are prefixed with `@` instead of `->`
127
- - all path segments must be separated by `/`
128
- - update readme & tests
185
+ # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@2.0.0) (2018-05-09)
129
186
 
130
- # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@0.2.0...@thi.ng/resolve-map@1.0.0) (2018-04-16)
187
+ #### 🛑 Breaking changes
131
188
 
132
- ### Features
189
+ - fix [#21](https://github.com/thi-ng/umbrella/issues/21) ([5d2a3fe](https://github.com/thi-ng/umbrella/commit/5d2a3fe))
190
+ - BREAKING CHANGE: update lookup path prefix & separators
191
+ - lookup paths now are prefixed with `@` instead of `->`
192
+ - all path segments must be separated by `/`
193
+ - update readme & tests
133
194
 
134
- - **resolve-map:** support relative parent refs, update tests/readme ([a379d12](https://github.com/thi-ng/umbrella/commit/a379d12))
195
+ # [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@1.0.0) (2018-04-16)
135
196
 
136
- ### BREAKING CHANGES
197
+ #### 🛑 Breaking changes
137
198
 
138
- - **resolve-map:** lookup paths passed to the provided `resolve()` fn inside function values are now relative by default (previously only absolute paths were allowed)
139
- - remove `resolveArray()` from module exports (use `resolveMap()` instead)
140
- - add absPath() to compute absolute path
141
- - add support for "../" ancestor access
199
+ - support relative parent refs, update tests/readme ([a379d12](https://github.com/thi-ng/umbrella/commit/a379d12))
200
+ - BREAKING CHANGE: lookup paths passed to the provided `resolve()` fn
201
+ inside function values are now relative by default (previously only
202
+ absolute paths were allowed)
203
+ - remove `resolveArray()` from module exports
204
+ (use `resolveMap()` instead)
205
+ - add absPath() to compute absolute path
206
+ - add support for "../" ancestor access
142
207
 
143
- # [0.2.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/resolve-map@0.1.7...@thi.ng/resolve-map@0.2.0) (2018-04-16)
208
+ ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/resolve-map@0.2.0) (2018-04-16)
144
209
 
145
- ### Features
210
+ #### 🚀 Features
146
211
 
147
- - **resolve-map:** resolve each ref only once, re-use resolved results ([6992e82](https://github.com/thi-ng/umbrella/commit/6992e82))
212
+ - resolve each ref only once, re-use resolved results ([6992e82](https://github.com/thi-ng/umbrella/commit/6992e82))
213
+ - this also fixes function value resolution,
214
+ e.g. {a: () => ()=> 1, b: "->a" } only unwraps `a` once now
package/package.json CHANGED
@@ -1,75 +1,80 @@
1
1
  {
2
- "name": "@thi.ng/resolve-map",
3
- "version": "5.0.8",
4
- "description": "DAG resolution of vanilla objects & arrays with internally linked values",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
2
+ "name": "@thi.ng/resolve-map",
3
+ "version": "5.1.3",
4
+ "description": "DAG resolution of vanilla objects & arrays with internally linked values",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/resolve-map#readme",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
12
18
  },
13
- "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/resolve-map#readme",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- }
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ }
23
+ ],
24
+ "author": "Karsten Schmidt <k+npm@thi.ng>",
25
+ "license": "Apache-2.0",
26
+ "scripts": {
27
+ "build": "yarn clean && tsc --declaration",
28
+ "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
29
+ "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
+ "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
+ "doc:readme": "yarn doc:stats && tools:readme",
32
+ "doc:stats": "tools:module-stats",
33
+ "pub": "yarn npm publish --access public",
34
+ "test": "testament test"
35
+ },
36
+ "dependencies": {
37
+ "@thi.ng/api": "^8.3.3",
38
+ "@thi.ng/checks": "^3.1.3",
39
+ "@thi.ng/errors": "^2.1.3",
40
+ "@thi.ng/paths": "^5.1.3"
41
+ },
42
+ "devDependencies": {
43
+ "@microsoft/api-extractor": "^7.19.2",
44
+ "@thi.ng/testament": "^0.2.3",
45
+ "rimraf": "^3.0.2",
46
+ "tools": "^0.0.1",
47
+ "typedoc": "^0.22.10",
48
+ "typescript": "^4.5.3"
49
+ },
50
+ "keywords": [
51
+ "configuration",
52
+ "dag",
53
+ "datastructure",
54
+ "graph",
55
+ "typescript"
56
+ ],
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "engines": {
61
+ "node": ">=12.7"
62
+ },
63
+ "files": [
64
+ "*.js",
65
+ "*.d.ts"
66
+ ],
67
+ "exports": {
68
+ ".": {
69
+ "import": "./index.js"
70
+ }
71
+ },
72
+ "thi.ng": {
73
+ "related": [
74
+ "dgraph",
75
+ "rstream-graph"
23
76
  ],
24
- "author": "Karsten Schmidt <k+npm@thi.ng>",
25
- "license": "Apache-2.0",
26
- "scripts": {
27
- "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf *.js *.d.ts *.map doc",
29
- "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
- "doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
31
- "doc:readme": "yarn doc:stats && ../../scripts/node-esm ../../tools/src/readme.ts",
32
- "doc:stats": "../../scripts/node-esm ../../tools/src/module-stats.ts",
33
- "pub": "yarn build && yarn publish --access public",
34
- "test": "testament test"
35
- },
36
- "dependencies": {
37
- "@thi.ng/api": "^8.2.0",
38
- "@thi.ng/checks": "^3.0.7",
39
- "@thi.ng/errors": "^2.0.6",
40
- "@thi.ng/paths": "^5.0.8"
41
- },
42
- "devDependencies": {
43
- "@thi.ng/testament": "^0.1.6"
44
- },
45
- "keywords": [
46
- "configuration",
47
- "dag",
48
- "datastructure",
49
- "graph",
50
- "typescript"
51
- ],
52
- "publishConfig": {
53
- "access": "public"
54
- },
55
- "engines": {
56
- "node": ">=12.7"
57
- },
58
- "files": [
59
- "*.js",
60
- "*.d.ts"
61
- ],
62
- "exports": {
63
- ".": {
64
- "import": "./index.js"
65
- }
66
- },
67
- "thi.ng": {
68
- "related": [
69
- "dgraph",
70
- "rstream-graph"
71
- ],
72
- "year": 2018
73
- },
74
- "gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159"
75
- }
77
+ "year": 2018
78
+ },
79
+ "gitHead": "2db9dd34c0c2c60cbfde3dad0bca352b20292f5c\n"
80
+ }