-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 2.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "short-order",
"version": "0.0.78",
"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": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"postcompile": "copyfiles samples/data/**/*.yaml build && copyfiles samples/data/**/*.txt build",
"posttest": "npm run check",
"prepare": "npm run compile",
"pretest": "npm run compile",
"pretest-coverage": "npm run compile",
"regression": "node build/samples/test_runner.js samples/tests/regression.yaml --baseline=samples/tests/baseline.yaml -x -d=samples/menu",
"test": "mocha",
"test-coverage": "nyc mocha --config .mocharc-ts.json"
},
"nyc": {
"exclude": [
"src/index.ts",
"src/**/index.ts",
"src/**/interfaces.ts",
"test"
],
"extends": "@istanbuljs/nyc-config-typescript",
"reporter": [
"text"
],
"watermarks": {
"lines": [
70,
80
],
"functions": [
70,
80
],
"branches": [
70,
80
],
"statements": [
70,
80
]
}
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/ansi-styles": "^3.2.1",
"@types/chai": "^4.1.6",
"@types/debug": "^4.1.2",
"@types/dotenv": "^6.1.1",
"@types/js-yaml": "^3.12.1",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/murmurhash": "0.0.0",
"@types/node": "^12.0.0",
"@types/number-to-words": "^1.2.0",
"@types/pluralize": "0.0.29",
"@types/readline-sync": "^1.4.3",
"@types/seedrandom": "^2.4.28",
"@types/snowball-stemmers": "^0.6.0",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"gts": "^3.1.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"ajv": "^6.12.2",
"ansi-styles": "^3.2.1",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"fast-csv": "^4.3.0",
"io-ts": "^2.2.16",
"js-yaml": "^3.13.1",
"minimist": "^1.2.0",
"murmurhash": "0.0.2",
"number-to-words": "^1.2.4",
"pluralize": "^7.0.0",
"prix-fixe": "^0.0.67",
"seedrandom": "^3.0.1",
"snowball-stemmers": "^0.6.0",
"talisman": "^0.21.0",
"token-flow": "0.0.39"
},
"peerDependencies": {
"prix-fixe": "^0.0.67",
"token-flow": "0.0.39"
}
}