-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "lookpath",
"version": "1.2.2",
"description": "The minimum and most straightforward way to check if command exists and where the executable is.",
"engines": {
"npm": ">=6.13.4"
},
"main": "./lib/index.js",
"bin": {
"lookpath": "bin/lookpath.js"
},
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint": "eslint ./src ./tests",
"test": "jest",
"validate": "npm run build && node ./bin/lookpath.js npm",
"release": "npm run build && npm run validate && npm publish"
},
"author": "otiai10",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/otiai10/lookpath.git"
},
"keywords": [
"exec.LookPath",
"command",
"exists"
],
"bugs": {
"url": "https://github.com/otiai10/lookpath/issues"
},
"homepage": "https://github.com/otiai10/lookpath#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^29.5.14",
"@types/node": "^25.2.3",
"eslint": "^9.39.2",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}