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