-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.46 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
{
"name": "juicy-chat-bot",
"version": "0.8.0",
"description": "A light-weight and totally \"secure\" library to easily deploy simple chat bots",
"keywords": [
"npm",
"chatbot",
"juice-shop",
"OWASP"
],
"homepage": "https://owasp-juice.shop",
"bugs": {
"url": "https://github.com/juice-shop/juicy-chat-bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juice-shop/juicy-chat-bot.git"
},
"license": "MIT",
"author": "Björn Kimminich <[email protected]> (https://kimminich.de)",
"contributors": [
"Scar26",
"Björn Kimminich"
],
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "nyc mocha test"
},
"nyc": {
"all": true,
"include": [
"index.js"
],
"report-dir": "./build/reports/coverage",
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"@nlpjs/core-loader": "^4.4.0",
"@nlpjs/evaluator": "^4.4.0",
"@nlpjs/lang-en": "^4.4.0",
"@nlpjs/language": "^4.3.0",
"@nlpjs/nlp": "^4.4.0",
"@nlpjs/nlu": "^4.4.0",
"@nlpjs/request": "^4.4.0",
"@nlpjs/sentiment": "^4.4.0",
"vm2": "3.9.17"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"standard": "^14.3.1"
},
"standard": {
"env": [
"node",
"mocha"
],
"globals": [
"it",
"describe",
"beforeEach"
]
}
}