-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
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
{
"name": "token-flow",
"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/TokenFlow",
"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/chai": "^4.1.6",
"@types/debug": "0.0.31",
"@types/dotenv": "^4.0.3",
"@types/js-yaml": "^3.11.2",
"@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/snowball-stemmers": "^0.6.0",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"gts": "^0.8.0",
"mocha": "^5.2.0",
"typescript": "~2.8.0"
},
"dependencies": {
"ajv": "^6.5.4",
"debug": "^4.1.0",
"js-yaml": "^3.13.1",
"murmurhash": "0.0.2",
"number-to-words": "^1.2.4",
"readline-sync": "^1.4.9",
"snowball-stemmers": "^0.6.0"
}
}