blob: 981cc0b5475c73599a4c885990c4d117a0110600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
'use strict';
const path = require('path');
const writeJsonFile = require('write-json-file');
const sortKeys = require('sort-keys');
const opts = {detectIndent: true};
const dependencyKeys = new Set([
'dependencies',
'devDependencies',
'optionalDependencies',
'peerDependencies'
]);
function normalize(pkg) {
const ret = {};
for (const key of Object.keys(pkg)) {
if (!dependencyKeys.has(key)) {
ret[key] = pkg[key];
} else if (Object.keys(pkg[key]).length !== 0) {
ret[key] = sortKeys(pkg[key]);
}
}
return ret;
}
module.exports = (fp, data) => {
if (typeof fp !== 'string') {
data = fp;
fp = '.';
}
fp = path.basename(fp) === 'package.json' ? fp : path.join(fp, 'package.json');
data = normalize(data);
return writeJsonFile(fp, data, opts);
};
module.exports.sync = (fp, data) => {
if (typeof fp !== 'string') {
data = fp;
fp = '.';
}
fp = path.basename(fp) === 'package.json' ? fp : path.join(fp, 'package.json');
data = normalize(data);
writeJsonFile.sync(fp, data, opts);
};
|