-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
{
"name": "zcli-monorepo",
"description": "Zendesk cli is a single command line tool for all your zendesk needs",
"version": "0.0.1",
"author": "@wattle",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@oclif/core": "=1.12.0",
"@oclif/test": "=2.1.0",
"@types/chai": "^4",
"@types/express": "^4.17.3",
"@types/mocha": "^9.1.1",
"@types/node": "^14.0.14",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"chai": "^4",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"form-data": "^4.0.0",
"lerna": "^5.6.2",
"lerna-changelog": "^2.2.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "~4.7.4",
"yarn-audit-fix": "^10.1.1",
"@types/sinon-chai": "^4.0.0"
},
"engines": {
"node": ">=20.17.0"
},
"keywords": [
"zcli",
"zendesk",
"command",
"cli"
],
"scripts": {
"audit:fix": "yarn-audit-fix",
"postinstall": "lerna bootstrap",
"dev": "ts-node ./packages/zcli/bin/run",
"git:check": "./scripts/git_check.sh",
"link:bin": "bash ./scripts/link_dev.sh",
"lint": "eslint . --ext .ts --config .eslintrc",
"test": "nyc --extension .ts mocha --config=.mocharc.json --forbid-only 'packages/**/src/**/*.test.ts'",
"test:functional": "mocha --config=.mocharc.json -r ts-node/register 'packages/**/tests/**/*.test.ts'",
"changelog": "lerna-changelog",
"type:check": "lerna run type:check"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": "zendesk/zcli",
"types": "lib/index.d.ts",
"resolutions": {
"@types/glob": "^8.1.0"
}
}