-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "@telefonica/luis-cli",
"version": "5.5.0",
"description": "CLI for Microsoft LUIS API",
"license": "Apache-2.0",
"repository": "https://github.com/Telefonica/luis-cli",
"author": "TDAF <tdaf@tid.es>",
"bin": {
"luis-cli": "./bin/luis-cli"
},
"keywords": [
"LUIS",
"cognitive services",
"NLP"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "shx rm -fR ./lib",
"compile": "tsc",
"lint": "tslint './src/**/*.ts'",
"prepublish": "npm run build",
"test": "npm run build && mocha -R spec lib/**/*.spec.js"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.11.0",
"lodash": "^4.17.11",
"promise-retry": "^1.1.1",
"promise-throttle": "^0.3.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@telefonica/language-model-converter": "^2.7.0",
"@types/colors": "^1.1.3",
"@types/commander": "^2.11.0",
"@types/lodash": "^4.14.78",
"@types/node": "^6",
"@types/request-promise-native": "^1.0.8",
"@types/sprintf-js": "1.1.0",
"mocha": "^4.0.1",
"shx": "^0.2.2",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"engines": {
"node": "~6.3.0"
},
"typings": "./lib/luis-trainer.d.ts"
}