-
Notifications
You must be signed in to change notification settings - Fork 623
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
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
{
"name": "NodeOS",
"version": "0.0.0",
"description": "Lightweight operating system using Node.js as userspace",
"bundleDependencies": [
"nodeos-barebones",
"nodeos-initramfs",
"nodeos-rootfs",
"nodeos-usersfs"
],
"scripts": {
"BigRedButton": "scripts/BigRedButton",
"dockerBuild": "scripts/dockerBuild",
"install": "scripts/build",
"postinstall": "scripts/postinstall",
"publish": "scripts/publish",
"start": "scripts/start",
"test": "scripts/test",
"unbuild": "scripts/unbuild"
},
"repository": {
"type": "git",
"url": "https://github.com/NodeOS/NodeOS.git"
},
"keywords": [
"OS",
"Linux",
"npm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeOS/NodeOS/issues"
},
"homepage": "http://node-os.com",
"private": true,
"dependencies": {
"cpio-stream": "^1.2.3",
"debugfs": "^0.0.2",
"download-manager": "^0.0.15",
"fs-extra": "^0.26.5",
"genfatfs": "nodeos/genfatfs",
"genext2fs": "nodeos/genext2fs",
"minimist": "^1.2.0",
"nodeos-cross-toolchain": "NodeOS/nodeos-cross-toolchain",
"qemu": "nodeos/qemu#raspi",
"suppose": "^0.5.1",
"tar-stream": "^1.3.2"
},
"devDependencies": {
"publish-release": "piranna/publish-release"
},
"engines": {
"node": "^0.12.0"
}
}