forked from MikeHopcroft/ShortOrder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "short-order",
"version": "0.0.39",
"description": "A natural language conversational agent for ordering and organizing items from a catalog.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"author": "Michael Hopcroft",
"license": "MIT",
"keywords": [
"nlp"
],
"repository": "https://github.com/MikeHopcroft/ShortOrder",
"scripts": {
"test": "mocha",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"postcompile": "copyfiles samples/data/**/*.yaml build && copyfiles samples/data/**/*.txt build"
},
"devDependencies": {
"@types/ansi-styles": "^3.2.1",
"@types/chai": "^4.1.6",
"@types/debug": "^4.1.2",
"@types/js-yaml": "^3.11.2",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/murmurhash": "0.0.0",
"@types/node": "^10.11.4",
"@types/number-to-words": "^1.2.0",
"@types/readline-sync": "^1.4.3",
"@types/seedrandom": "^2.4.28",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"gts": "^0.8.0",
"mocha": "^5.2.0",
"typescript": "~2.8.0"
},
"dependencies": {
"@types/pluralize": "0.0.29",
"ajv": "^6.5.4",
"ansi-styles": "^3.2.1",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"js-yaml": "^3.12.0",
"minimist": "^1.2.0",
"murmurhash": "0.0.2",
"number-to-words": "^1.2.4",
"pluralize": "^7.0.0",
"prix-fixe": "0.0.3",
"readline-sync": "^1.4.9",
"seedrandom": "^3.0.1",
"token-flow": "0.0.30"
}
}