-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.72 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.72 KB
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
{
"name": "juicy-chat-bot",
"version": "0.9.0",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/test/*",
"types.d.ts"
],
"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 <bjoern.kimminich@owasp.org> (https://kimminich.de)",
"contributors": [
"Scar26",
"Björn Kimminich"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint index.ts nlp --ext .ts",
"lint:fix": "eslint index.ts nlp --ext .ts --fix",
"test": "c8 node dist/test/initialize.spec.js"
},
"c8": {
"all": true,
"report-dir": "./build/reports/coverage",
"exclude-after-remap": true,
"exclude": [
"build/**",
"dist/**",
"node_modules/**",
".eslintrc.cjs",
"**.d.ts"
],
"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": {
"@types/node": "^24.3.0",
"c8": "^10.1.3",
"eslint-config-standard-with-typescript": "^43.0.1",
"standard": "^14.3.1",
"typescript": "^5.9.2"
}
}