-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "conversation-api-function",
"version": "0.0.17",
"description": "conversation-api-function is an opnionated tool to start using vonage conversation api https://developer.nexmo.com/conversation ",
"scripts": {
"test": "jest",
"start": "conversation-api-function run examples/server/index.js",
"first_config": "node ./bin/create_env.js",
"cli_create_user": "node bin/cli_create_user.js $1",
"cli_token": "node bin/cli_token.js $1"
},
"jest": {
"testPathIgnorePatterns": [
"examples/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jurgob/conversation-api-function.git"
},
"bin": {
"conversation-api-function": "./bin/conversation-api-function.js"
},
"engines": {
"node": ">=14.15"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"localtunnel": "^2.0.1",
"nodejs-base64": "^1.0.3",
"open": "^7.4.2",
"redis": "^3.1.0",
"redis-mock": "^0.54.0",
"shelljs": "^0.8.4",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"jest": "^26.6.3"
}
}