forked from Vonage/vonage-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.99 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"$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"
}
],
"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": "jest",
"test:watch": "jest --watch",
"tsc": "tsc",
"typedoc": "typedoc"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.js": [
"prettier -w",
"eslint --fix"
],
"*.ts": [
"prettier -w",
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@babel/plugin-transform-typescript": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@babel/types": "^7.24.7",
"@tsconfig/node16": "16.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "8.51.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jest-extended": "2.0.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "^9.0.11",
"is-ci": "3.0.1",
"jest": "^29.7.0",
"lerna": "^8.1.5",
"lerna-changelog": "^2.2.0",
"lint-staged": "15.2.7",
"nock": "^13.5.4",
"prettier": "3.3.2",
"prettier-eslint": "16.3.0",
"recursive-iterator": "3.3.0",
"ts-node-dev": "^2.0.0",
"typedoc": "0.26.2",
"typedoc-github-wiki-theme": "^2.0.0",
"typedoc-plugin-frontmatter": "^1.0.0",
"typedoc-plugin-markdown": "^4.1.0",
"typedoc-plugin-remark": "^1.0.2",
"typescript": "^5.5.2"
}
}