You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
972 B
59 lines
972 B
{ |
|
"name": "pkg-dir", |
|
"version": "7.0.0", |
|
"description": "Find the root directory of a Node.js project or npm package", |
|
"license": "MIT", |
|
"repository": "sindresorhus/pkg-dir", |
|
"funding": "https://github.com/sponsors/sindresorhus", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "https://sindresorhus.com" |
|
}, |
|
"type": "module", |
|
"exports": "./index.js", |
|
"engines": { |
|
"node": ">=14.16" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava && tsd" |
|
}, |
|
"files": [ |
|
"index.js", |
|
"index.d.ts" |
|
], |
|
"keywords": [ |
|
"package", |
|
"json", |
|
"root", |
|
"npm", |
|
"entry", |
|
"find", |
|
"up", |
|
"find-up", |
|
"findup", |
|
"look-up", |
|
"look", |
|
"file", |
|
"search", |
|
"match", |
|
"resolve", |
|
"parent", |
|
"parents", |
|
"folder", |
|
"directory", |
|
"walk", |
|
"walking", |
|
"path" |
|
], |
|
"dependencies": { |
|
"find-up": "^6.3.0" |
|
}, |
|
"devDependencies": { |
|
"ava": "^4.3.1", |
|
"tempy": "^3.0.0", |
|
"tsd": "^0.22.0", |
|
"typescript": "^4.7.4", |
|
"xo": "^0.51.0" |
|
} |
|
}
|
|
|