-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.89 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
{
"name": "bindl",
"description": "Downloads and extracts binaries from compressed packages using a config file",
"version": "4.2.5",
"author": "Felipe Santos @felipecrs",
"bin": "lib/index.js",
"bugs": "https://github.com/felipecrs/bindl/issues",
"dependencies": {
"chalk": "^4.1.2",
"clipanion": "^3.2.0",
"cosmiconfig": "^9.0.0",
"decompress-tar": "^4.1.1",
"decompress-tarbz2": "^4.1.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"download": "^8.0.0",
"listr": "^0.14.3",
"rimraf": "^5.0.0"
},
"devDependencies": {
"@felipecrs/decompress-tarxz": "^4.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/download": "^8.0.2",
"@types/jest": "^29.5.1",
"@types/listr": "^0.14.4",
"@types/node": "^14.18.43",
"@types/shelljs": "^0.8.12",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unicorn": "^54.0.0",
"execa": "^5.1.1",
"jest": "^29.5.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"shelljs": "^0.8.5",
"tmp": "^0.2.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/felipecrs/bindl#readme",
"license": "MIT",
"main": "lib/index.js",
"repository": "felipecrs/bindl",
"scripts": {
"build": "rimraf lib && tsc --build src",
"lint": "tsc --project src/tsconfig.json && eslint . && prettier --check .",
"prepack": "npm run build",
"test": "nyc jest",
"posttest": "npm run lint"
},
"volta": {
"node": "20.18.0",
"npm": "10.9.0"
}
}