-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 1.99 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
{
"name": "intelligo",
"version": "1.3.0",
"description": "AI Chatbot Framework for Node.js",
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"author": "Turtuvshin Byambaa",
"homepage": "https://intelligo.js.org",
"copyright": "Copyright 2019 Intelligo Systems.",
"repository": {
"type": "git",
"url": "https://github.com/intelligo-systems/intelligo.git"
},
"license": "MIT",
"keywords": [
"ai",
"ai-bot",
"artificial-intelligence",
"bot",
"builder",
"chat",
"chatbot",
"classifier",
"slack-bot",
"line-bot",
"conversational",
"messenger-bot",
"messenger",
"facebook",
"framework",
"intelligo",
"intelligence",
"neural network",
"neural",
"network",
"neural-networks",
"machine-learning"
],
"files": [
"/lib",
"/src"
],
"dependencies": {
"async": "3.2.0",
"body-parser": "1.19.0",
"config": "3.2.5",
"eventemitter3": "4.0.7",
"express": "4.17.1",
"extend": "3.0.2",
"lodash": "4.17.21",
"opencollective": "1.0.3",
"opencollective-postinstall": "2.0.3",
"request": "2.88.0",
"neuro.js": "0.1.7",
"vow": "0.4.20",
"ws": "7.5.0",
"ws-heartbeat": "1.1.0"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/extend": "3.0.1",
"@types/lodash": "4.14.170",
"@types/node": "10.17.14",
"@types/request": "2.48.4",
"@types/ws": "7.4.5",
"chai": "4.2.0",
"eslint": "6.8.0",
"mocha": "7.2.0",
"prettier": "1.19.1",
"sinon": "7.5.0",
"sinon-chai": "3.7.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.9.10"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/intelligo"
},
"scripts": {
"postinstall": "opencollective-postinstall",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "mocha --recursive test/*"
}
}