-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 936 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
{
"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": "10.0.0",
"author": {
"email": "[email protected]",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"bin": {
"which": "bin/which.js"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"@types/gulp": "^4.0.17",
"@types/node": "^22.9.0",
"coffeescript": "^2.7.0",
"gulp": "^5.0.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"
],
"scripts": {
"start": "node bin/which.js --help",
"test": "gulp test"
}
}