generated from ccuffs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.43 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
{
"name": "aura-nlp",
"version": "1.0.0",
"description": "Microservico para processamento de NLP pela assistente virtual Aura",
"main": "index.js",
"dependencies": {
"@nlpjs/basic": "^4.22.0",
"@nlpjs/directline-connector": "^4.22.0",
"@nlpjs/express-api-server": "^4.22.0",
"@nlpjs/lang-pt": "^4.22.0",
"@nlpjs/qna-importer": "^4.21.1",
"axios": "^0.21.1",
"chalk": "^4.1.2",
"express": "^4.17.1",
"node-nlp": "^4.22.1",
"yargs": "^17.1.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"train:domain": "node aura.js train --type=\"domain\" --dataset=\"./data/train/domain-pt.tsv\" --output=\"./data/models/domain.model\"",
"train:domain-dir": "node aura.js train --type=\"domain\" --dataset=\"./data/train/domain\" --output=\"./data/models/domain.model\"",
"train:qna": "node aura.js train --type=\"qna\" --dataset=\"./data/train/qna-pt.tsv\" --output=\"./data/models/qna.model\"",
"train": "npm run train:domain && npm run train:qna",
"serve": "node aura.js serve -e \"domain:domain:./data/models/domain.model,qna:qna:./data/models/qna.model\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccuffs/aura-nlp.git"
},
"author": "Fernando Bevilacqua",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccuffs/aura-nlp/issues"
},
"homepage": "https://github.com/ccuffs/aura-nlp#readme"
}