UNPKG

998 BJSONView Raw
1{
2 "name": "pkg-dir",
3 "version": "6.0.1",
4 "description": "Find the root directory of a Node.js project or npm package",
5 "license": "MIT",
6 "repository": "sindresorhus/pkg-dir",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
17 },
18 "scripts": {
19 "test": "xo && ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "package",
27 "json",
28 "root",
29 "npm",
30 "entry",
31 "find",
32 "up",
33 "find-up",
34 "findup",
35 "look-up",
36 "look",
37 "file",
38 "search",
39 "match",
40 "resolve",
41 "parent",
42 "parents",
43 "folder",
44 "directory",
45 "walk",
46 "walking",
47 "path"
48 ],
49 "dependencies": {
50 "find-up": "^6.1.0"
51 },
52 "devDependencies": {
53 "ava": "^3.15.0",
54 "tempy": "^2.0.0",
55 "tsd": "^0.17.0",
56 "typescript": "^4.4.3",
57 "xo": "^0.44.0"
58 }
59}