forked from stephan83/download-github-release
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@terascope/fetch-github-release",
"publishConfig": {
"access": "public"
},
"version": "2.0.0",
"description": "Download a specific release from github",
"type": "module",
"files": [
"dist/src/**/*",
"bin/*"
],
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "yarn build --watch",
"lint": "eslint --ignore-pattern .gitignore",
"lint:fix": "yarn lint --fix",
"setup": "yarn && yarn build",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:cov": "NODE_OPTIONS='--experimental-vm-modules' jest --collectCoverage",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage=false --notify --watch --onlyChanged",
"test:debug": "NODE_OPTIONS='--experimental-vm-modules' env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand",
"check": "yarn run lint && yarn run test",
"clean": "rimraf dist coverage",
"prepublishOnly": "yarn run clean && yarn run build"
},
"bin": {
"fetch-github-release": "bin/fetch-github-release"
},
"repository": {
"type": "git",
"url": "https://github.com/terascope/fetch-github-release.git"
},
"keywords": [
"github",
"release",
"download"
],
"author": "Stephan Florquin",
"license": "MIT",
"bugs": {
"url": "https://github.com/terascope/fetch-github-release/issues"
},
"dependencies": {
"extract-zip": "^2.0.1",
"got": "13.0.0",
"multi-progress": "^4.0.0",
"progress": "^2.0.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@terascope/eslint-config": "^1.1.7",
"@types/jest": "^29.5.12",
"@types/multi-progress": "^2.0.6",
"@types/node": "^22.13.5",
"@types/stream-buffers": "^3.0.4",
"@types/tmp": "^0.2.1",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"nock": "^14.0.1",
"node-notifier": "^10.0.0",
"rimraf": "^5.0.7",
"stream-buffers": "^3.0.0",
"tmp": "0.2.3",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}