-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"name": "virtual-assistant",
"version": "1.0.0",
"main": "index.js",
"description": "An extensible chat bot that can help you in a lot of tasks",
"dependencies": {
"@slack/client": "^3.8.0",
"bottleneck": "^1.13.1",
"chrono-node": "^1.3.5",
"debug": "^2.6.0",
"entities": "^1.1.1",
"javascript-state-machine": "^2.3.5",
"js-data": "^3.0.2",
"js-data-adapter": "^0.8.3",
"js-data-mongodb": "^0.7.0",
"js-data-sql": "^1.0.1",
"knex": "^0.14.6",
"lodash": "^4.17.3",
"memory-cache": "^0.2.0",
"mysql": "^2.13.0",
"object-path": "^0.11.2",
"pg": "^6.1.2",
"sqlite3": "^3.1.8",
"uuid": "^3.2.1"
},
"devDependencies": {
"standard-version": "^4.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:denouche/virtual-assistant.git"
},
"author": "Antoine Leveugle",
"license": "ISC",
"scripts": {
"release": "standard-version && git push --follow-tags origin HEAD && npm publish"
}
}