-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.86 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.86 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
{
"name": "@jfrog/fly-action",
"version": "1.6.2",
"description": "GitHub Action to setup Fly CLI",
"main": "lib/index.js",
"post": "lib/post.js",
"scripts": {
"build": "npm run format && tsc --noEmit && esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/index.js && esbuild src/post.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/post.js && esbuild src/upload.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/upload.js && esbuild src/download.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/download.js && esbuild src/distribute.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/distribute.js && esbuild src/go-publish.ts --bundle --platform=node --target=node20 --format=cjs --outfile=lib/go-publish.js",
"test": "vitest run --exclude 'src/integration-tests/**'",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=20.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfrog/fly-action.git"
},
"keywords": [
"github",
"action",
"fly"
],
"author": "JFrog",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jfrog/fly-action/issues"
},
"homepage": "https://github.com/jfrog/fly-action#readme"
}