forked from MinaProtocol/nix-npm-buildpackage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkyarnjson.js
44 lines (36 loc) · 1.47 KB
/
mkyarnjson.js
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
const assert = require("assert")
const fs = require("fs")
const lockfile = require("@yarnpkg/lockfile")
const ssri = require("ssri")
const USAGE = "node mkyarnjson.js yarn.lock integrities.json"
if (process.argv.length != USAGE.split(/\s+/).length) {
console.error("Usage:", USAGE)
process.exit(1)
}
const [yarnLockFile, intFile] = process.argv.slice(2)
const yarnJson = lockfile.parse(fs.readFileSync(yarnLockFile, "utf8")).object
const integrities = JSON.parse(fs.readFileSync(intFile))
function splitNameVsn(key) {
// foo@vsn or @foo/bar@vsn
if (key[0] == "@") {
const [name, vsn] = key.slice(1).split("@")
return ["@"+name, vsn]
} else {
return key.split("@")
}
}
const deps = {}
Object.keys(yarnJson).forEach(key => {
if (key in deps) return
const dep = yarnJson[key]
const [name, vsn] = splitNameVsn(key)
version = dep.version
const [url, hash] = dep.resolved.split("#", 2)
const isGitDependency = url.startsWith("git+")
const integrity = dep.integrity || integrities[isGitDependency ? dep.resolved : url] ||
(!isGitDependency && hash && ssri.fromHex(hash, "sha1").toString())
assert(integrity || isGitDependency, "missing integrity for " + JSON.stringify(dep))
const resolved = isGitDependency ? url + "#" + hash : url
deps[key] = { rev: isGitDependency ? hash : undefined, name, version, resolved, integrity }
})
console.log(JSON.stringify(deps, null, 2))