-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
94 lines (94 loc) · 2.48 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
86
87
88
89
90
91
92
93
94
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@vonage/server-sdk-monorepo",
"private": true,
"description": "Vonage Server SDK for Node.js. API support for SMS, Voice Calls, Text-to-Speech, Numbers, Verify (2FA) and more.",
"keywords": [
"sms",
"voice",
"vonage",
"verify",
"2fa",
"phone numbers"
],
"homepage": "https://github.com/vonage/vonage-node-sdk",
"repository": {
"type": "git",
"url": "git://github.com/vonage/vonage-node-sdk.git"
},
"license": "Apache 2.0",
"author": "vonage",
"contributors": [
{
"name": "Kelly Andrews",
"url": "https://github.com/kellyjandrews"
},
{
"name": "Chuck \"MANCHUCK\" Reeves",
"url": "https://github.com/manchuck"
},
{
"name": "Chris Tankersley",
"url": "https://github.com/dragonmantank"
}
],
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npx lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"compile": "lerna run compile",
"depcheck": "lerna exec --no-bail --stream --prefix npx depcheck -- --ignore-dirs=dist",
"eslint": "eslint",
"format": "prettier -- -w",
"jest": "jest",
"lerna": "lerna",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "is-ci || husky install",
"publish": "lerna publish",
"test": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:watch": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"tsc": "tsc",
"typedoc": "typedoc"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.js": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"@jest/globals": "29.7.0",
"@tsconfig/node18": "18.2.4",
"@types/jest": "29.5.12",
"@types/node": "^22.5.0",
"@vonage/eslint-config": "1.3.1",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"husky": "^9.1.5",
"is-ci": "^3.0.1",
"jest": "29.7.0",
"jsonwebtoken": "^9.0.2",
"lerna": "8.1.8",
"lint-staged": "15.2.9",
"nock": "^13.5.5",
"recursive-iterator": "3.3.0",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"typedoc": "^0.26.6",
"typedoc-github-wiki-theme": "^2.0.0",
"typedoc-plugin-frontmatter": "^1.0.0",
"typedoc-plugin-markdown": "^4.2.5",
"typedoc-plugin-remark": "^1.0.3",
"typescript": "5.5.4"
}
}