ekms 8.0.0-beta.0 → 8.0.0-beta.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/common/animals.instance.json +2634 -1477
  2. package/common/characters.js +0 -1
  3. package/common/colors.instance.json +25327 -0
  4. package/common/colors.js +71 -0
  5. package/common/colors.test.json +4860 -0
  6. package/common/concept.js +2 -2
  7. package/common/crew.instance.json +15918 -9384
  8. package/common/crew.js +4 -2
  9. package/common/crew.test.json +714 -452
  10. package/common/dialogues.js +36 -25
  11. package/common/dialogues.test.json +1053 -33
  12. package/common/dimension.instance.json +261 -290
  13. package/common/dimension.test.json +476 -687
  14. package/common/edible.instance.json +19462 -10130
  15. package/common/emotions.instance.json +125 -68
  16. package/common/fastfood.instance.json +219732 -110803
  17. package/common/fastfood.js +1 -1
  18. package/common/fastfood.test.json +7941 -3647
  19. package/common/formulas.instance.json +219 -249
  20. package/common/formulas.js +2 -2
  21. package/common/formulas.test.json +1027 -955
  22. package/common/help.test.json +20 -28
  23. package/common/helpers/concept.js +31 -10
  24. package/common/helpers/dialogues.js +17 -1
  25. package/common/helpers/formulas.js +0 -14
  26. package/common/helpers/meta.js +0 -1
  27. package/common/helpers/properties.js +6 -13
  28. package/common/kirk.instance.json +567 -289
  29. package/common/length.instance.json +5232 -4726
  30. package/common/math.instance.json +143 -1181
  31. package/common/math.js +4 -4
  32. package/common/meta.js +0 -2
  33. package/common/negation.instance.json +2 -0
  34. package/common/negation.js +38 -0
  35. package/common/negation.test.json +308 -0
  36. package/common/ordering.instance.json +298 -160
  37. package/common/people.instance.json +1930 -1068
  38. package/common/pipboy.instance.json +7868 -6548
  39. package/common/pokemon.instance.json +4074 -2152
  40. package/common/pressure.instance.json +1299 -1237
  41. package/common/properties.instance.json +109 -60
  42. package/common/properties.js +9 -7
  43. package/common/properties.test.json +17605 -4030
  44. package/common/punctuation.js +8 -0
  45. package/common/punctuation.test.json +233 -5
  46. package/common/reports.instance.json +566 -560
  47. package/common/reports.js +0 -2
  48. package/common/sizeable.js +7 -2
  49. package/common/spock.instance.json +567 -289
  50. package/common/stm.js +16 -5
  51. package/common/temperature.instance.json +1337 -1263
  52. package/common/testing.js +0 -1
  53. package/common/tokenize.js +2 -1
  54. package/common/tokenize.test.json +86 -1
  55. package/common/ui.instance.json +241 -258
  56. package/common/ui.js +0 -1
  57. package/common/weight.instance.json +4996 -4206
  58. package/common/weight.test.json +242 -238
  59. package/main.js +50 -45
  60. package/package.json +13 -6
package/main.js CHANGED
@@ -3,8 +3,11 @@ const tpm = require('./common/runtime').theprogrammablemind
3
3
  const helpers = require('./common/helpers')
4
4
  const currency = require('./common/currency')
5
5
  const numbers = require('./common/numbers')
6
+ const colors = require('./common/colors')
6
7
  const people = require('./common/people')
7
8
  const time = require('./common/time')
9
+ const yesno = require('./common/yesno')
10
+ const negation = require('./common/negation')
8
11
  const avatar = require('./common/avatar')
9
12
  const comparable = require('./common/comparable')
10
13
  const concept = require('./common/concept')
@@ -14,7 +17,6 @@ const hierarchy = require('./common/hierarchy')
14
17
  const ordering = require('./common/ordering')
15
18
  const properties = require('./common/properties')
16
19
  const sizeable = require('./common/sizeable')
17
- const yesno = require('./common/yesno')
18
20
  const tokenize = require('./common/tokenize')
19
21
  const dialogues = require('./common/dialogues')
20
22
  const gdefaults = require('./common/gdefaults')
@@ -46,49 +48,52 @@ const kirk = require('./common/kirk')
46
48
  const spock = require('./common/spock')
47
49
 
48
50
  module.exports = {
49
- Config: tpm.Config,
51
+ Config: tpm.Config,
52
+ helpers,
50
53
  defaultContextCheck: helpers.defaultContextCheck,
51
- currency,
52
- numbers,
53
- people,
54
- time,
55
- avatar,
56
- comparable,
57
- concept,
58
- countable,
59
- help,
60
- hierarchy,
61
- ordering,
62
- properties,
63
- sizeable,
64
- yesno,
65
- tokenize,
66
- dialogues,
67
- gdefaults,
68
- meta,
69
- pos,
70
- punctuation,
71
- stm,
72
- sdefaults,
73
- ui,
74
- math,
75
- formulas,
76
- dimension,
77
- length,
78
- pressure,
79
- temperature,
80
- weight,
81
- animals,
82
- edible,
83
- javascript,
84
- scorekeeper,
85
- reports,
86
- tell,
87
- pipboy,
88
- fastfood,
89
- characters,
90
- crew,
91
- stgame,
92
- kirk,
93
- spock,
54
+ currency,
55
+ numbers,
56
+ colors,
57
+ people,
58
+ time,
59
+ yesno,
60
+ negation,
61
+ avatar,
62
+ comparable,
63
+ concept,
64
+ countable,
65
+ help,
66
+ hierarchy,
67
+ ordering,
68
+ properties,
69
+ sizeable,
70
+ tokenize,
71
+ dialogues,
72
+ gdefaults,
73
+ meta,
74
+ pos,
75
+ punctuation,
76
+ stm,
77
+ sdefaults,
78
+ ui,
79
+ math,
80
+ formulas,
81
+ dimension,
82
+ length,
83
+ pressure,
84
+ temperature,
85
+ weight,
86
+ animals,
87
+ edible,
88
+ javascript,
89
+ scorekeeper,
90
+ reports,
91
+ tell,
92
+ pipboy,
93
+ fastfood,
94
+ characters,
95
+ crew,
96
+ stgame,
97
+ kirk,
98
+ spock,
94
99
  }
package/package.json CHANGED
@@ -18,8 +18,11 @@
18
18
  "includes": [
19
19
  "currency",
20
20
  "numbers",
21
+ "colors",
21
22
  "people",
22
- "time"
23
+ "time",
24
+ "yesno",
25
+ "negation"
23
26
  ]
24
27
  },
25
28
  {
@@ -34,8 +37,7 @@
34
37
  "hierarchy",
35
38
  "ordering",
36
39
  "properties",
37
- "sizeable",
38
- "yesno"
40
+ "sizeable"
39
41
  ]
40
42
  },
41
43
  {
@@ -130,6 +132,9 @@
130
132
  "common/avatar.test.json",
131
133
  "common/characters.js",
132
134
  "common/characters.test.json",
135
+ "common/colors.instance.json",
136
+ "common/colors.js",
137
+ "common/colors.test.json",
133
138
  "common/comparable.js",
134
139
  "common/comparable.test.json",
135
140
  "common/concept.instance.json",
@@ -190,6 +195,9 @@
190
195
  "common/meta.instance.json",
191
196
  "common/meta.js",
192
197
  "common/meta.test.json",
198
+ "common/negation.instance.json",
199
+ "common/negation.js",
200
+ "common/negation.test.json",
193
201
  "common/numbers.js",
194
202
  "common/numbers.test.json",
195
203
  "common/ordering.instance.json",
@@ -265,12 +273,11 @@
265
273
  "node-fetch": "^2.6.1",
266
274
  "pluralize": "^8.0.0",
267
275
  "scriptjs": "^2.5.9",
268
- "underscore": "^1.12.0",
269
276
  "table": "^6.7.1",
270
277
  "base-64": "^1.0.0",
271
278
  "argparse": "^2.0.1",
272
- "theprogrammablemind": "8.0.0-beta.0"
279
+ "theprogrammablemind": "8.0.0-beta.10"
273
280
  },
274
- "version": "8.0.0-beta.0",
281
+ "version": "8.0.0-beta.10",
275
282
  "license": "UNLICENSED"
276
283
  }