-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "get-bin-path",
"version": "11.0.0",
"type": "module",
"exports": {
"types": "./build/src/main.d.ts",
"default": "./build/src/main.js"
},
"main": "./build/src/main.js",
"types": "./build/src/main.d.ts",
"files": [
"build/src/**/*.{js,json,d.ts}",
"!build/src/**/*.test.js",
"!build/src/{helpers,fixtures}"
],
"sideEffects": false,
"scripts": {
"test": "gulp test"
},
"description": "Get the current package's binary path",
"keywords": [
"binary",
"package-json",
"npm",
"path",
"package",
"unit-testing",
"testing",
"cwd",
"bin",
"executable",
"package-manager",
"nodejs",
"javascript",
"typescript",
"es6",
"cli",
"shell",
"terminal",
"dependency-management",
"library"
],
"license": "Apache-2.0",
"homepage": "https://www.github.com/ehmicky/get-bin-path",
"repository": {
"type": "git",
"url": "git+https://github.com/ehmicky/get-bin-path.git"
},
"bugs": {
"url": "https://github.com/ehmicky/get-bin-path/issues"
},
"author": "ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky)",
"directories": {
"lib": "src"
},
"dependencies": {
"escalade": "^3.2.0"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^3.0.32",
"@ehmicky/eslint-config": "^20.0.26",
"@ehmicky/prettier-config": "^1.0.5",
"pkg-dir": "^8.0.0",
"test-each": "^7.0.0"
},
"engines": {
"node": ">=18.18.0"
}
}