-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.25 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
{
"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/index.ts ./tests/lookpath.spec.ts",
"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": {
"@types/jest": "^27.0.2",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"jest": "^27.2.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}