-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "zcli-bulk-action",
"version": "1.0.0",
"description": "Github Action to deploy Zendesk Apps to multiple instances.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"engines": {
"node": ">=16.13.0",
"yarn": ">=1.22.17"
},
"packageManager": "yarn@1.22.17",
"repository": {
"type": "git",
"url": "git+https://github.com/eteg/zcli-bulk-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eteg/zcli-bulk-action/issues"
},
"homepage": "https://github.com/eteg/zcli-bulk-action/blob/master/README.md",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@zendesk/zcli": "^1.0.0-beta.30",
"archiver": "^5.3.1",
"axios": "^0.27.2",
"form-data": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"jest": "^29.4.1"
}
}