tpmkms_4wp 8.0.0-beta.1 → 8.0.0-beta.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/common/animals.instance.json +2542 -1375
  2. package/common/colors.instance.json +6796 -3773
  3. package/common/crew.instance.json +12534 -6597
  4. package/common/crew.test.json +714 -452
  5. package/common/dialogues.js +2 -18
  6. package/common/dimension.instance.json +242 -261
  7. package/common/dimension.test.json +314 -502
  8. package/common/edible.instance.json +19282 -10010
  9. package/common/emotions.instance.json +122 -129
  10. package/common/fastfood.instance.json +218879 -110575
  11. package/common/formulas.instance.json +216 -250
  12. package/common/formulas.js +2 -2
  13. package/common/help.test.json +10 -22
  14. package/common/helpers/concept.js +2 -1
  15. package/common/kirk.instance.json +564 -290
  16. package/common/length.instance.json +5153 -4677
  17. package/common/math.instance.json +140 -1157
  18. package/common/math.js +4 -4
  19. package/common/negation.instance.json +2 -0
  20. package/common/negation.js +38 -0
  21. package/common/negation.test.json +308 -0
  22. package/common/ordering.instance.json +292 -230
  23. package/common/people.instance.json +1902 -1015
  24. package/common/pipboy.instance.json +7690 -6356
  25. package/common/pokemon.instance.json +3954 -2081
  26. package/common/pressure.instance.json +1265 -1193
  27. package/common/properties.instance.json +106 -61
  28. package/common/properties.js +2 -0
  29. package/common/reports.instance.json +557 -559
  30. package/common/spock.instance.json +564 -290
  31. package/common/temperature.instance.json +1297 -1209
  32. package/common/ui.instance.json +238 -259
  33. package/common/weight.instance.json +4905 -4166
  34. package/main.js +49 -46
  35. package/package.json +9 -6
package/main.js CHANGED
@@ -6,6 +6,8 @@ const numbers = require('./common/numbers')
6
6
  const colors = require('./common/colors')
7
7
  const people = require('./common/people')
8
8
  const time = require('./common/time')
9
+ const yesno = require('./common/yesno')
10
+ const negation = require('./common/negation')
9
11
  const avatar = require('./common/avatar')
10
12
  const comparable = require('./common/comparable')
11
13
  const concept = require('./common/concept')
@@ -15,7 +17,6 @@ const hierarchy = require('./common/hierarchy')
15
17
  const ordering = require('./common/ordering')
16
18
  const properties = require('./common/properties')
17
19
  const sizeable = require('./common/sizeable')
18
- const yesno = require('./common/yesno')
19
20
  const tokenize = require('./common/tokenize')
20
21
  const dialogues = require('./common/dialogues')
21
22
  const gdefaults = require('./common/gdefaults')
@@ -47,50 +48,52 @@ const kirk = require('./common/kirk')
47
48
  const spock = require('./common/spock')
48
49
 
49
50
  module.exports = {
50
- Config: tpm.Config,
51
+ Config: tpm.Config,
52
+ helpers,
51
53
  defaultContextCheck: helpers.defaultContextCheck,
52
- currency,
53
- numbers,
54
- colors,
55
- people,
56
- time,
57
- avatar,
58
- comparable,
59
- concept,
60
- countable,
61
- help,
62
- hierarchy,
63
- ordering,
64
- properties,
65
- sizeable,
66
- yesno,
67
- tokenize,
68
- dialogues,
69
- gdefaults,
70
- meta,
71
- pos,
72
- punctuation,
73
- stm,
74
- sdefaults,
75
- ui,
76
- math,
77
- formulas,
78
- dimension,
79
- length,
80
- pressure,
81
- temperature,
82
- weight,
83
- animals,
84
- edible,
85
- javascript,
86
- scorekeeper,
87
- reports,
88
- tell,
89
- pipboy,
90
- fastfood,
91
- characters,
92
- crew,
93
- stgame,
94
- kirk,
95
- 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,
96
99
  }
package/package.json CHANGED
@@ -20,7 +20,9 @@
20
20
  "numbers",
21
21
  "colors",
22
22
  "people",
23
- "time"
23
+ "time",
24
+ "yesno",
25
+ "negation"
24
26
  ]
25
27
  },
26
28
  {
@@ -35,8 +37,7 @@
35
37
  "hierarchy",
36
38
  "ordering",
37
39
  "properties",
38
- "sizeable",
39
- "yesno"
40
+ "sizeable"
40
41
  ]
41
42
  },
42
43
  {
@@ -194,6 +195,9 @@
194
195
  "common/meta.instance.json",
195
196
  "common/meta.js",
196
197
  "common/meta.test.json",
198
+ "common/negation.instance.json",
199
+ "common/negation.js",
200
+ "common/negation.test.json",
197
201
  "common/numbers.js",
198
202
  "common/numbers.test.json",
199
203
  "common/ordering.instance.json",
@@ -269,12 +273,11 @@
269
273
  "node-fetch": "^2.6.1",
270
274
  "pluralize": "^8.0.0",
271
275
  "scriptjs": "^2.5.9",
272
- "underscore": "^1.12.0",
273
276
  "table": "^6.7.1",
274
277
  "base-64": "^1.0.0",
275
278
  "argparse": "^2.0.1",
276
- "theprogrammablemind_4wp": "8.0.0-beta.1"
279
+ "theprogrammablemind_4wp": "8.0.0-beta.10"
277
280
  },
278
- "version": "8.0.0-beta.1",
281
+ "version": "8.0.0-beta.10",
279
282
  "license": "UNLICENSED"
280
283
  }