UNPKG

a2r

Version:
7 lines (6 loc) 241 B
/** * Ensures a `package.json` file exists. If not, runs `npm init` with `--force` flag * @param {string} projectPath Project base path */ declare const ensureNpmInit: (projectPath: string) => Promise<void>; export default ensureNpmInit;