@terascope/fetch-github-release 2.2.1 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +32 -31
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.
|
|
6
|
+
"version": "2.3.0",
|
|
7
7
|
"description": "Download a specific release from github",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"files": [
|
|
@@ -12,20 +12,6 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "dist/src/index.js",
|
|
14
14
|
"typings": "dist/src/index.d.ts",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsc --project tsconfig.json",
|
|
17
|
-
"build:watch": "yarn build --watch",
|
|
18
|
-
"lint": "eslint --ignore-pattern .gitignore",
|
|
19
|
-
"lint:fix": "yarn lint --fix",
|
|
20
|
-
"setup": "yarn && yarn build",
|
|
21
|
-
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
22
|
-
"test:cov": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage",
|
|
23
|
-
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage=false --notify --watch --onlyChanged",
|
|
24
|
-
"test:debug": "NODE_OPTIONS='--experimental-vm-modules' env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand",
|
|
25
|
-
"check": "yarn run lint && yarn run test",
|
|
26
|
-
"clean": "rimraf dist coverage",
|
|
27
|
-
"prepublishOnly": "yarn run clean && yarn run build"
|
|
28
|
-
},
|
|
29
15
|
"bin": "bin/fetch-github-release",
|
|
30
16
|
"repository": {
|
|
31
17
|
"type": "git",
|
|
@@ -43,31 +29,46 @@
|
|
|
43
29
|
},
|
|
44
30
|
"dependencies": {
|
|
45
31
|
"extract-zip": "^2.0.1",
|
|
46
|
-
"got": "
|
|
32
|
+
"got": "14.6.6",
|
|
47
33
|
"multi-progress": "^4.0.0",
|
|
48
34
|
"progress": "^2.0.3",
|
|
49
|
-
"yargs": "^
|
|
35
|
+
"yargs": "^18.0.0"
|
|
50
36
|
},
|
|
51
37
|
"devDependencies": {
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
38
|
+
"@jest/globals": "^30.3.0",
|
|
39
|
+
"@terascope/eslint-config": "^1.1.30",
|
|
40
|
+
"@types/jest": "^30.0.0",
|
|
54
41
|
"@types/multi-progress": "^2.0.6",
|
|
55
|
-
"@types/node": "^
|
|
56
|
-
"@types/stream-buffers": "^3.0.
|
|
42
|
+
"@types/node": "^24.12.0",
|
|
43
|
+
"@types/stream-buffers": "^3.0.8",
|
|
57
44
|
"@types/tmp": "^0.2.6",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"jest
|
|
61
|
-
"
|
|
45
|
+
"@types/yargs": "^17.0.35",
|
|
46
|
+
"eslint": "^9.39.4",
|
|
47
|
+
"jest": "^30.3.0",
|
|
48
|
+
"jest-extended": "^7.0.0",
|
|
49
|
+
"nock": "^14.0.11",
|
|
62
50
|
"node-notifier": "^10.0.1",
|
|
63
|
-
"rimraf": "^
|
|
51
|
+
"rimraf": "^6.1.3",
|
|
64
52
|
"stream-buffers": "^3.0.3",
|
|
65
|
-
"tmp": "0.2.
|
|
66
|
-
"ts-jest": "^29.
|
|
67
|
-
"typescript": "^5.
|
|
53
|
+
"tmp": "0.2.5",
|
|
54
|
+
"ts-jest": "^29.4.6",
|
|
55
|
+
"typescript": "^5.9.3"
|
|
68
56
|
},
|
|
69
57
|
"engines": {
|
|
70
|
-
"node": ">=
|
|
58
|
+
"node": ">=22.0.0",
|
|
59
|
+
"pnpm": ">=10.32.1"
|
|
71
60
|
},
|
|
72
|
-
"
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsc --project tsconfig.json",
|
|
63
|
+
"build:watch": "tsc --project tsconfig.json --watch",
|
|
64
|
+
"lint": "eslint --ignore-pattern .gitignore",
|
|
65
|
+
"lint:fix": "pnpm lint --fix",
|
|
66
|
+
"setup": "pnpm install && pnpm build",
|
|
67
|
+
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
68
|
+
"test:cov": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage",
|
|
69
|
+
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage=false --notify --watch --onlyChanged",
|
|
70
|
+
"test:debug": "NODE_OPTIONS='--experimental-vm-modules' env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand",
|
|
71
|
+
"check": "pnpm run lint && pnpm run test",
|
|
72
|
+
"clean": "rimraf dist coverage"
|
|
73
|
+
}
|
|
73
74
|
}
|