UNPKG

390 BJavaScriptView Raw
1const path = require('path');
2
3const getKatulongRootPath = () => path.resolve('./node_modules/katulong/');
4const getNodeModulesPath = () => path.resolve('./node_modules/');
5const getPackagePath = () => path.resolve('.');
6const getBinPath = () => path.resolve('./node_modules/.bin');
7
8module.exports = {
9 getBinPath,
10 getKatulongRootPath,
11 getNodeModulesPath,
12 getPackagePath
13};