theprogrammablemind 7.2.3-beta.3 → 7.2.3-beta.4

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/demo.js +1 -1
  2. package/package.json +41 -41
package/demo.js CHANGED
@@ -1,4 +1,4 @@
1
- const { Config, knowledgeModule, where } = require('entodicton')
1
+ const { Config, knowledgeModule, where } = require('theprogrammablemind')
2
2
 
3
3
  /*
4
4
  This demo does not use the knowledge modules and just shows the
package/package.json CHANGED
@@ -1,4 +1,37 @@
1
1
  {
2
+ "main": "index.js",
3
+ "author": "dev@thinktelligence.com",
4
+ "version": "7.2.3-beta.4",
5
+ "keywords": [
6
+ "NLP",
7
+ "NLU",
8
+ "NLC",
9
+ "natural language processing",
10
+ "natural language generation",
11
+ "natural language understanding",
12
+ "chatbot"
13
+ ],
14
+ "devDependencies": {
15
+ "eslint-config-standard": "^16.0.3",
16
+ "eslint-plugin-promise": "^5.1.0",
17
+ "eslint": "^7.31.0",
18
+ "eslint-plugin-import": "^2.23.4",
19
+ "@typescript-eslint/parser": "^4.28.4",
20
+ "@typescript-eslint/eslint-plugin": "^4.28.4",
21
+ "jest": "^26.6.3",
22
+ "eslint-plugin-node": "^11.1.0"
23
+ },
24
+ "name": "theprogrammablemind",
25
+ "scripts": {
26
+ "test:watch": "npm run test -- --watch",
27
+ "to": "node node_modules/.bin/jest --runInBand -t NEO",
28
+ "lint:fix": "eslint \"**/*.js\" --fix",
29
+ "lint": "eslint \"**/*.js\"",
30
+ "test": "jest --config ./jest.config.json",
31
+ "to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO",
32
+ "tod": "node inspect node_modules/.bin/jest --runInBand -t NEO",
33
+ "test:debug": "node inspect node_modules/.bin/jest --runInBand --config ./jest.config.json"
34
+ },
2
35
  "files": [
3
36
  "client.js",
4
37
  "index.js",
@@ -14,52 +47,19 @@
14
47
  "src/generators.js",
15
48
  "src/semantics.js"
16
49
  ],
17
- "scripts": {
18
- "test": "jest --config ./jest.config.json",
19
- "lint": "eslint \"**/*.js\"",
20
- "lint:fix": "eslint \"**/*.js\" --fix",
21
- "to:debug": "node inspect node_modules/.bin/jest --runInBand -t NEO",
22
- "test:debug": "node inspect node_modules/.bin/jest --runInBand --config ./jest.config.json",
23
- "tod": "node inspect node_modules/.bin/jest --runInBand -t NEO",
24
- "to": "node node_modules/.bin/jest --runInBand -t NEO",
25
- "test:watch": "npm run test -- --watch"
26
- },
27
- "name": "theprogrammablemind",
28
50
  "license": "ISC",
29
- "keywords": [
30
- "NLP",
31
- "NLU",
32
- "NLC",
33
- "natural language processing",
34
- "natural language generation",
35
- "natural language understanding",
36
- "chatbot"
37
- ],
38
- "main": "index.js",
39
- "version": "7.2.3-beta.3",
40
- "devDependencies": {
41
- "@typescript-eslint/eslint-plugin": "^4.28.4",
42
- "eslint": "^7.31.0",
43
- "eslint-plugin-node": "^11.1.0",
44
- "@typescript-eslint/parser": "^4.28.4",
45
- "eslint-plugin-import": "^2.23.4",
46
- "eslint-plugin-promise": "^5.1.0",
47
- "eslint-config-standard": "^16.0.3",
48
- "jest": "^26.6.3"
49
- },
50
51
  "dependencies": {
51
- "json-diff": "^1.0.3",
52
52
  "underscore": "^1.13.1",
53
- "deep-equal": "^2.0.4",
54
- "uuid": "^8.3.2",
53
+ "json-diff": "^1.0.3",
54
+ "lodash": "^4.17.20",
55
+ "scriptjs": "^2.5.9",
55
56
  "fs": "0.0.1-security",
57
+ "deep-equal": "^2.0.4",
56
58
  "sort-json": "^2.0.0",
57
- "lodash": "^4.17.20",
59
+ "uuid": "^8.3.2",
58
60
  "node-fetch": "^2.6.1",
59
61
  "json-stable-stringify": "^1.0.1",
60
- "scriptjs": "^2.5.9",
61
- "readline": "^1.3.0",
62
- "base-64": "^1.0.0"
63
- },
64
- "author": "dev@thinktelligence.com"
62
+ "base-64": "^1.0.0",
63
+ "readline": "^1.3.0"
64
+ }
65
65
  }