theprogrammablemind 7.3.4-beta.6 → 7.3.4-beta.7

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