-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 2.16 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
{
"name": "gh-release-fetch",
"version": "4.0.3",
"description": "A library to fetch release binaries from GitHub Releases",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"prepublishOnly": "npm ci && npm run build",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"build": "tsc",
"build:watch": "tsc --watch",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier"
},
"config": {
"eslint": "--report-unused-disable-directives --ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{src,tests,.github}/**/*.{mjs,cjs,js,mts,cts,ts,html}\" \"*.{cjs,mjs,js,cts,mts,ts,html}\" \".*.{cjs,mjs,js,cts,mts,ts,html}\"",
"prettier": "--loglevel=warn \"{src,tests,.github}/**/*.{cjs,mjs,js,cts,mts,ts,md,yml,json,html}\" \"*.{cjs,mjs,js,cts,mts,ts,yml,json,html}\" \".*.{cjs,mjs,js,cts,mts,ts,yml,json,html}\" \"!package-lock.json\""
},
"keywords": [
"github",
"release",
"fetch"
],
"engines": {
"node": "^14.18.0 || ^16.13.0 || >=18.0.0"
},
"author": "David Calavera",
"repository": "netlify/gh-release-fetch",
"license": "MIT",
"devDependencies": {
"@netlify/eslint-config-node": "7.0.1",
"@types/download": "8.0.5",
"@types/node": "14.18.63",
"@types/semver": "7.5.8",
"@vitest/coverage-v8": "0.34.6",
"husky": "8.0.3",
"npm-run-all2": "5.0.2",
"tempy": "3.0.0",
"typescript": "5.6.3",
"vitest": "0.34.6"
},
"dependencies": {
"@xhmikosr/downloader": "^13.0.0",
"node-fetch": "^3.3.1",
"semver": "^7.5.3"
}
}