forked from ScoopInstaller/Versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodejs012.json
50 lines (50 loc) · 1.68 KB
/
nodejs012.json
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
{
"homepage": "https://nodejs.org",
"description": "A JavaScript runtime built on Chrome's V8 JavaScript engine.",
"version": "0.12.18",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://nodejs.org/dist/v0.12.18/x64/node-v0.12.18-x64.msi",
"hash": "674e9f58b6d26c052076b6a75fd12bc25aa19aa79d86e79a092ab77caaf1cbae"
},
"32bit": {
"url": "https://nodejs.org/dist/v0.12.18/node-v0.12.18-x86.msi",
"hash": "cb872caa2519af542657641a7661b8c2afa44cd7e195d5a7adc946ffbf9fc9be"
}
},
"extract_dir": "nodejs",
"persist": [
"bin",
"cache"
],
"env_add_path": [
"bin",
"."
],
"post_install": [
"# Set npm prefix to install modules inside bin and npm cache so they persist",
"Set-Content -Value \"prefix=$persist_dir\\bin`ncache=$persist_dir\\cache\" -Path \"$dir\\node_modules\\npm\\npmrc\""
],
"checkver": {
"url": "https://nodejs.org/dist/latest-v0.12.x/",
"regex": "node-v([\\d.]+)-x86.msi"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://nodejs.org/dist/v$version/x64/node-v$version-x64.msi",
"hash": {
"find": "([a-fA-F0-9]+)\\s+x64/(?:$basename)",
"url": "https://nodejs.org/dist/v$version/SHASUMS256.txt"
}
},
"32bit": {
"url": "https://nodejs.org/dist/v$version/node-v$version-x86.msi",
"hash": {
"url": "https://nodejs.org/dist/v$version/SHASUMS256.txt"
}
}
}
}
}