forked from LivePersonInc/node-agent-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.07 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
{
"name": "node-agent-sdk",
"description": "Liveperson Agent Messaging SDK for NodeJS",
"version": "1.3.0",
"author": {
"name": "LivePersonInc",
"email": "fe-infra-lp@liveperson.com"
},
"contributors": [
{
"name": "Michael Dimenshtein",
"email": "michaeld@liveperson.com"
}
],
"scripts": {
"start": "node ./examples/greeting-bot/greeting-bot.js",
"lint": "eslint lib/*; true",
"test": "mocha"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.13.1",
"mocha": "^5.2.0",
"mockery": "^2.0.0",
"sinon": "^1.17.7"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/LivePersonInc/node-agent-sdk.git"
},
"keywords": [
"agent",
"sdk",
"liveperson",
"node",
"nodejs",
"bot",
"messaging"
],
"readme": "README.md",
"engines": {
"node": ">=6.9.1",
"npm": ">=6.9.0"
},
"license": "MIT",
"dependencies": {
"async": "^2.1.4",
"node-cache": "^4.2.0",
"request": "^2.79.0",
"uuid": "^3.0.1",
"ws": "^7.1.2"
}
}