-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
110 lines (110 loc) · 3.14 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
109
110
{
"name": "genie-toolkit",
"version": "0.9.1",
"description": "A Generator of Natural Language Parsers for Compositional Virtual Assistants",
"repository": "https://github.com/stanford-oval/genie-toolkit.git",
"author": "Giovanni Campagna <[email protected]>",
"license": "Apache-2.0",
"bin": {
"genie": "./dist/tool/genie.js"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"dependencies": {
"@js-temporal/polyfill": "^0.3.0",
"JSONStream": "^1.3.5",
"adt": "^0.7.2",
"argparse": "^2.0.0",
"body-parser": "^1.19.1",
"byline": "^5.0.0",
"consumer-queue": "^1.0.0",
"csv-parse": "^4.16.3",
"csv-stringify": "^5.6.5",
"deep-equal": "^2.0.5",
"en-inflectors": "^1.0.12",
"en-pos": "^1.0.16",
"errorhandler": "^1.5.1",
"express": "^4.17.2",
"fastest-levenshtein": "^1.0.12",
"flex-js": "^1.0.5",
"form-data": "^4.0.0",
"gettext-parser": "^5.1.1",
"ip": "^1.1.5",
"js-yaml": "^4.1.0",
"lice-js": "^0.2.0",
"mime": "^3.0.0",
"morgan": "^1.9.1",
"node-gettext": "^3.0.0",
"nodemailer": "^6.7.2",
"q": "^1.5.0",
"qs": "^6.10.2",
"query-validation": "^0.2.1",
"seedrandom": "^3.0.0",
"sockaddr": "^1.0.1",
"sqlite3": "5.0.2",
"stemmer": "^1.0.5",
"string-interp": "^0.3.1",
"thingpedia": "^2.10.0",
"thingtalk": "^2.1.1",
"thingtalk-units": "^0.2.0",
"twilio": "^3.72.0",
"typescript": "^4.6.3",
"uuid": "^8.2.0",
"ws": "^7.5.6"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/JSONStream": "npm:@types/jsonstream@^0.8.30",
"@types/argparse": "^2.0.10",
"@types/body-parser": "^1.19.2",
"@types/byline": "^4.2.33",
"@types/deep-equal": "^1.0.1",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/gettext-parser": "^4.0.1",
"@types/js-yaml": "^4.0.5",
"@types/jsonstream": "^0.8.30",
"@types/mime": "^2.0.3",
"@types/morgan": "^1.9.3",
"@types/node": "^14.18.3",
"@types/node-gettext": "^3.0.3",
"@types/nodemailer": "^6.4.4",
"@types/seedrandom": "^3.0.1",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"nyc": "^15.0.0",
"pegjs": "^0.10.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typedoc": "^0.22.13"
},
"scripts": {
"create-pot": "make -f po/main.mk create-pot",
"update-po": "make -f po/main.mk update-po",
"translate-po": "make -f po/translate.mk translate-po",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./lib ./tool ./test",
"test": "nyc ./test/everything.sh",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "make",
"doc": "typedoc lib/index.ts"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"lib/genie-compiler/grammar.js",
"test/**",
"coverage/**"
]
},
"greenkeeper": {
"ignore": [
"thingtalk",
"thingpedia"
]
}
}