-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@vonage/cli",
"version": "3.1.0",
"description": "Vonage CLI",
"license": "Apache 2.0",
"contributors": [
{
"name": "Paul Ardeleanu",
"url": "https://github.com/pardel"
},
{
"name": "Chuck \"MANCHUCK\" Reeves",
"url": "https://github.com/manchuck"
},
{
"name": "Chris Tankersley",
"url": "https://github.com/dragonmantank"
}
],
"type": "module",
"bin": {
"vonage": "bin/vonage.js"
},
"files": [
"src/**",
"bin/**",
"data/**"
],
"scripts": {
"eslint": "eslint",
"jest": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"test": "node --experimental-vm-modules node_modules/.bin/jest --silent --verbose",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --verbose --silent --watchAll"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"@laboralphy/did-you-mean": "3.1.0",
"@stoplight/prism-cli": "5.14.2",
"@vonage/auth": "1.14.3",
"@vonage/conversations": "1.13.4",
"@vonage/jwt": "1.13.3",
"@vonage/server-client": "1.19.3",
"@vonage/server-sdk": "3.26.4",
"ajv": "8.18.0",
"camelcase": "9.0.0",
"chalk": "5.6.2",
"compare-versions": "6.1.1",
"deepmerge": "4.3.1",
"json-diff": "1.0.6",
"jsonwebtoken": "9.0.3",
"ngrok": "5.0.0-beta.2",
"node-fetch": "3.3.2",
"snakecase": "1.0.0",
"table": "6.9.0",
"winston": "3.19.0",
"yaml": "2.8.2",
"yargs": "18.0.0",
"yargs-parser": "22.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@faker-js/faker": "10.3.0",
"@jest/globals": "30.3.0",
"@stylistic/eslint-plugin-js": "4.4.1",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-n": "17.24.0",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.2.0",
"lint-staged": "16.3.2",
"winston-transport": "4.9.0"
},
"engines": {
"node": ">=20.0.0"
}
}