forked from jfrog/setup-jfrog-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "@jfrog/setup-jfrog-cli",
"version": "3.3.0",
"private": true,
"description": "Setup JFrog CLI in GitHub Actions",
"main": "lib/main.js",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.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.0",
"@actions/exec": "~1.1.1",
"@actions/tool-cache": "~2.0.1",
"semver": "~7.3.8"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}