theprogrammablemind_4wp 8.0.0 → 8.1.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const { Semantics, Semantic } = require('./src/semantics')
2
2
  const { Generators, Generator } = require('./src/generators')
3
3
  const { Config } = require('./src/config')
4
+ const { w, where } = require('./src/helpers')
4
5
  const Digraph = require('./src/digraph')
5
6
  const client = require('./client')
6
7
  const flattens = require('./src/flatten')
@@ -14,9 +15,9 @@ module.exports = {
14
15
  runTests: client.runTests,
15
16
  knowledgeModule: client.knowledgeModule,
16
17
  ensureTestFile: client.ensureTestFile,
17
- where: client.where,
18
+ where,
18
19
  stableId: client.stableId,
19
- w: client.w,
20
+ w,
20
21
  Config,
21
22
  Semantics,
22
23
  Semantic,
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "devDependencies": {
3
- "eslint-plugin-import": "^2.23.4",
4
- "jest": "^29.7.0",
5
- "@typescript-eslint/parser": "^4.28.4",
6
3
  "@typescript-eslint/eslint-plugin": "^4.28.4",
7
- "eslint-plugin-node": "^11.1.0",
4
+ "@typescript-eslint/parser": "^4.28.4",
5
+ "eslint": "^7.31.0",
8
6
  "eslint-config-standard": "^16.0.3",
7
+ "eslint-plugin-import": "^2.23.4",
8
+ "eslint-plugin-node": "^11.1.0",
9
9
  "eslint-plugin-promise": "^5.1.0",
10
- "eslint": "^7.31.0"
10
+ "jest": "^29.7.0"
11
11
  },
12
12
  "scripts": {
13
13
  "to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO23",
@@ -43,6 +43,7 @@
43
43
  "src/flatten.js",
44
44
  "src/unflatten.js",
45
45
  "src/config.js",
46
+ "src/configHelpers.js",
46
47
  "src/copy.js",
47
48
  "src/digraph.js",
48
49
  "src/digraph_internal.js",
@@ -52,19 +53,18 @@
52
53
  ],
53
54
  "author": "dev@thinktelligence.com",
54
55
  "dependencies": {
56
+ "base-64": "^1.0.0",
55
57
  "deep-equal": "^2.0.4",
56
- "uuid": "^8.3.2",
58
+ "fs": "0.0.1-security",
57
59
  "json-diff": "^1.0.3",
60
+ "json-stable-stringify": "^1.0.1",
58
61
  "lodash": "^4.17.20",
59
- "fs": "0.0.1-security",
60
- "base-64": "^1.0.0",
61
- "sort-json": "^2.0.0",
62
+ "node-fetch": "^2.6.1",
62
63
  "readline": "^1.3.0",
63
64
  "scriptjs": "^2.5.9",
64
- "underscore": "^1.13.1",
65
- "json-stable-stringify": "^1.0.1",
66
- "node-fetch": "^2.6.1"
65
+ "sort-json": "^2.0.0",
66
+ "uuid": "^8.3.2"
67
67
  },
68
- "version": "8.0.0",
68
+ "version": "8.1.0-beta.0",
69
69
  "license": "UNLICENSED"
70
70
  }