-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 967 Bytes
/
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
{
"bugs": "https://github.com/cedx/which.js/issues",
"description": "Find the instances of an executable in the system path. Like the `which` Linux command.",
"homepage": "https://github.com/cedx/which.js",
"license": "MIT",
"name": "@cedx/which",
"repository": "cedx/which.js",
"type": "module",
"version": "11.1.0",
"author": {
"email": "cedric@belin.io",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"bin": {
"which": "bin/which.js"
},
"devDependencies": {
"@types/gulp": "^4.0.17",
"@types/node": "^22.13.2",
"gulp": "^5.0.0",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"find",
"path",
"system",
"utility",
"which"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "gulp test"
}
}