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