UNPKG
pkg-down
Version:
latest (0.1.0)
0.1.0
Find the topmost package.json file.
github.com/sholladay/pkg-down
sholladay/pkg-down
pkg-down
/
index.js
10 lines
(6 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
findDown =
require
(
'find-down'
);
const
pkdDown
= (
cwd
) => {
return
findDown
(
'package.json'
, { cwd }); };
module
.
exports
= pkdDown;