54 lines
925 B
JSON
54 lines
925 B
JSON
|
|
{
|
||
|
|
"name": "resolve-global",
|
||
|
|
"version": "2.0.0",
|
||
|
|
"description": "Resolve the path of a globally installed module",
|
||
|
|
"license": "MIT",
|
||
|
|
"repository": "sindresorhus/resolve-global",
|
||
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
||
|
|
"author": {
|
||
|
|
"name": "Sindre Sorhus",
|
||
|
|
"email": "sindresorhus@gmail.com",
|
||
|
|
"url": "https://sindresorhus.com"
|
||
|
|
},
|
||
|
|
"type": "module",
|
||
|
|
"exports": {
|
||
|
|
"types": "./index.d.ts",
|
||
|
|
"default": "./index.js"
|
||
|
|
},
|
||
|
|
"sideEffects": false,
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"test": "xo && ava && tsd"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"index.js",
|
||
|
|
"index.d.ts"
|
||
|
|
],
|
||
|
|
"keywords": [
|
||
|
|
"resolve",
|
||
|
|
"global",
|
||
|
|
"package",
|
||
|
|
"module",
|
||
|
|
"globally",
|
||
|
|
"path",
|
||
|
|
"npm",
|
||
|
|
"yarn",
|
||
|
|
"packages",
|
||
|
|
"require"
|
||
|
|
],
|
||
|
|
"dependencies": {
|
||
|
|
"global-directory": "^4.0.1"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"ava": "^5.3.1",
|
||
|
|
"execa": "^8.0.1",
|
||
|
|
"tsd": "^0.29.0",
|
||
|
|
"xo": "^0.56.0"
|
||
|
|
},
|
||
|
|
"ava": {
|
||
|
|
"timeout": "10m"
|
||
|
|
}
|
||
|
|
}
|