-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
85 lines (85 loc) · 1.92 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@vonage/cli",
"version": "3.0.2",
"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"
}
],
"bin": {
"vonage": "bin/vonage.js"
},
"files": [
"src/**",
"bin/**",
"data/**"
],
"scripts": {
"eslint": "eslint",
"jest": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"test": "jest --silent --verbose",
"test:watch": "jest --verbose --silent --watchAll"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"@laboralphy/did-you-mean": "2.3.0",
"@vonage/auth": "1.12.0",
"@vonage/conversations": "1.7.2",
"@vonage/jwt": "1.11.0",
"@vonage/server-client": "1.16.1",
"@vonage/server-sdk": "3.19.2",
"ajv": "8.17.1",
"camelcase": "6.3.0",
"chalk": "4",
"compare-versions": "6.1.1",
"deepmerge": "4.3.1",
"easy-table": "1.2.0",
"json-diff": "1.0.6",
"jsonwebtoken": "9.0.2",
"node-fetch": "2.7.0",
"snakecase": "1.0.0",
"table": "6.9.0",
"winston": "3.17.0",
"yaml": "2.6.1",
"yargs": "17.7.2",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@faker-js/faker": "9.3.0",
"@stylistic/eslint-plugin-js": "2.11.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-n": "17.14.0",
"globals": "15.13.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.10",
"winston-transport": "4.9.0"
},
"engines": {
"node": ">=18.0.0"
}
}