-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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": "setup-jfrog-cli",
"version": "1.2.0",
"private": true,
"description": "Setup JFrog CLI in GitHub Actions",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm prune --production && npm run build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "tslint -p tsconfig.json",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "jest --colors"
},
"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.2.6",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.6.0",
"@types/fs-extra": "^9.0.2",
"@types/node": "^12.12.6",
"@types/semver": "^7.3.4",
"fs-extra": "^9.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^27.0.4",
"jest-circus": "^27.0.4",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3",
"husky": "^4.3.0",
"prettier": "^2.1.2"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run build && npm prune --production && git add node_modules/*"
}
}
}