-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 KB
/
package.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
51
52
53
54
55
56
57
58
59
60
{
"name": "qemu",
"version": "4.0.0",
"description": "QEmu as a npm package for NodeOS",
"bin": {
"ivshmem-client": "bin/ivshmem-client",
"ivshmem-server": "bin/ivshmem-server",
"qemu-aarch64": "bin/qemu-aarch64",
"qemu-arm": "bin/qemu-arm",
"qemu-ga": "bin/qemu-ga",
"qemu-i386": "bin/qemu-i386",
"qemu-img": "bin/qemu-img",
"qemu-io": "bin/qemu-io",
"qemu-nbd": "bin/qemu-nbd",
"qemu-system-aarch64": "bin/qemu-system-aarch64",
"qemu-system-arm": "bin/qemu-system-arm",
"qemu-system-i386": "bin/qemu-system-i386",
"qemu-system-x86_64": "bin/qemu-system-x86_64",
"qemu-x86_64": "bin/qemu-x86_64"
},
"main": "index.js",
"scripts": {
"BigRedButton": "scripts/BigRedButton",
"build": "scripts/build.sh",
"ci": "scripts/ci",
"install": "prebuild-install -d https://github.com/NodeOS/qemu/releases/download/v{version}/{platform}-{arch}.tar.gz || npm run build",
"mergeOrRelease": "scripts/mergeOrRelease",
"prepublish": "scripts/prepublish",
"update": "buho-checkUpdate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeOS/qemu.git"
},
"keywords": [
"emulator",
"x86",
"i386",
"x86_64",
"arm"
],
"author": "Jesús Leganés Combarro 'piranna' <piranna@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/NodeOS/qemu/issues"
},
"homepage": "https://github.com/NodeOS/qemu#readme",
"dependencies": {
"prebuild-install": "^5.3.0"
},
"devDependencies": {
"buho": "^0.3.4",
"ci-publish": "^1.3.1",
"prebuild": "8.2.1"
},
"buho": {
"type": "DirectoryIndex",
"url": "https://download.qemu.org/"
}
}