forked from jfrog/setup-jfrog-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "@jfrog/setup-jfrog-cli",
"version": "4.4.3",
"private": true,
"description": "Setup JFrog CLI in GitHub Actions",
"main": "lib/main.js",
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm prune --production && npm run build",
"format": "npx prettier --write **/*.ts",
"format-check": "npx prettier --check **/*.ts",
"lint": "npx eslint -c .eslintrc.js --ext .ts src",
"compile": "tsc",
"postinstall": "npm run compile",
"test": "npx jest --colors",
"prepare": "npx husky install .husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfrog/setup-jfrog-cli.git"
},
"keywords": [
"cli",
"xray",
"jfrog",
"bintray",
"jfrog-cli",
"artifactory",
"mission-control"
],
"author": "JFrog",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "~1.10.1",
"@actions/exec": "~1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "~2.2.1",
"@actions/tool-cache": "~2.0.1",
"@octokit/core": "^5.2.0",
"semver": "~7.6.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}