forked from sindresorhus/binary-version
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@lesjoursfr/bin-version",
"version": "8.1.2",
"description": "Get the version of a binary in semver format",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lesjoursfr/bin-version.git"
},
"homepage": "https://github.com/lesjoursfr/bin-version#readme",
"bugs": {
"url": "https://github.com/lesjoursfr/bin-version/issues"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"engines": {
"node": "22.x || 24.x || 26.x"
},
"keywords": [
"binary",
"executable",
"version",
"semver",
"semantic",
"cli"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"scripts": {
"freshlock": "rm -rf node_modules/ && rm .yarn/install-state.gz && rm yarn.lock && yarn",
"check-lint": "eslint",
"check-format": "prettier --check .",
"check-tsc": "tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write .",
"build": "tsc",
"test": "NODE_OPTIONS='--loader=ts-node/esm' mocha"
},
"dependencies": {
"execa": "^10.0.0",
"find-versions": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tsconfig/node22": "22.0.5",
"@types/mocha": "10.0.10",
"@types/node": "24.13.3",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.8.0",
"mocha": "11.7.6",
"prettier": "3.9.6",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0"
},
"packageManager": "yarn@4.17.1"
}