-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.96 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
{
"name": "@vonage/cli-monorepo",
"homepage": "https://github.com/Vonage/vonage-cli#readme",
"license": "Apache 2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "5.45.1",
"@typescript-eslint/parser": "5.45.1",
"chai": "4.3.7",
"eslint": "8.29.0",
"eslint-config-google": "0.14.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-oclif-typescript": "1.0.3",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-deprecation": "1.3.3",
"eslint-plugin-prettier": "4.2.1",
"lerna": "6.1.0",
"prettier": "2.8.0",
"typescript": "4.9.3"
},
"engines": {
"node": ">=12.0.0"
},
"private": true,
"module": true,
"scripts": {
"create-plugin": "node .template/build.js",
"depcheck": "npm run lerna -- exec --concurrency 1 npx depcheck",
"lerna": "node_modules/.bin/lerna",
"lerna:clean": "npm run lerna clean -- -y",
"lint": "node_modules/.bin/eslint packages/**/*.{js,ts}",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier packages/**/*.{js,ts}",
"prettier:fix": "prettier -w packages/**/*.{js,ts} packages/**/__tests__/**/*.{js,ts}",
"test": "jest",
"test:app": "jest --selectProjects=applications ",
"test:cli": "jest --selectProjects=cli ",
"test:convo": "jest --selectProjects=conversations ",
"test:insight": "jest --selectProjects=insight ",
"test:number": "jest --selectProjects=numbers ",
"test:sms": "jest --selectProjects=sms ",
"test:users": "jest --selectProjects=users ",
"test:utils": "jest --selectProjects=utils "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vonage/vonage-cli.git"
},
"bugs": {
"url": "https://github.com/Vonage/vonage-cli/issues"
}
}