1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-04 05:10:05 +02:00

remove node_modules

This commit is contained in:
s2
2018-05-19 20:19:16 +02:00
parent 460c610361
commit a3f65f089b
1856 changed files with 0 additions and 309697 deletions

48
app/node_modules/read-pkg/index.js generated vendored
View File

@@ -1,48 +0,0 @@
'use strict';
var path = require('path');
var loadJsonFile = require('load-json-file');
var normalizePackageData = require('normalize-package-data');
var pathType = require('path-type');
module.exports = function (fp, opts) {
if (typeof fp !== 'string') {
opts = fp;
fp = '.';
}
opts = opts || {};
return pathType.dir(fp)
.then(function (isDir) {
if (isDir) {
fp = path.join(fp, 'package.json');
}
return loadJsonFile(fp);
})
.then(function (x) {
if (opts.normalize !== false) {
normalizePackageData(x);
}
return x;
});
};
module.exports.sync = function (fp, opts) {
if (typeof fp !== 'string') {
opts = fp;
fp = '.';
}
opts = opts || {};
fp = pathType.dirSync(fp) ? path.join(fp, 'package.json') : fp;
var x = loadJsonFile.sync(fp);
if (opts.normalize !== false) {
normalizePackageData(x);
}
return x;
};