forked from runtimejs/runtime
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jsos",
"version": "0.2.0",
"kernelVersion": 2,
"description": "The operating system written on JavaScript and based on runtime.js",
"main": "js/index.js",
"private": true,
"scripts": {
"postinstall": "node scripts/update-versions.js",
"lint": "eslint js",
"test": "runtimeify test/unit/index.js -o initrd && runtime-qemu ./initrd",
"test-build": "runtimeify test/unit/index.js -o initrd && runtime-qemu ./initrd --kernel ../disk/boot/runtime",
"start": "runtime start",
"release-start": "qemu-system-x86_64 -m 512 -kernel kernel -initrd .initrd",
"build-iso": "grub-mkrescue -o build.iso .",
"build-kernel": "cmake ."
},
"logLevels": [
"NoLineEditor",
"NoKeyboard"
],
"repository": {
"type": "git",
"url": "[email protected]:prophessor/jsos.git"
},
"author": "PROPHESSOR, UsernameAK, runtimejs authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/prophessor/jsos/issues"
},
"homepage": "https://vk.com/jsosofficial",
"devDependencies": {
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-runtime-internal": "^1.0.0",
"tape": "^4.9.0"
},
"runtimejs": {
"debug": true
},
"dependencies": {
"assert": "^1.3.0",
"assert-error": "^1.0.2",
"bit-twiddle": "^1.0.2",
"buffer": "^4.3.0",
"commander": "1.2.0",
"constants-browserify": "^1.0.0",
"debug": "^3.1.0",
"diff_match_patch": "0.1.1",
"eshttp": "git+https://github.com/JsOS-Team/eshttp.git",
"event-controller": "^1.0.1",
"events": "^1.1.0",
"get-set": "^1.0.0",
"int64-buffer": "^0.1.10",
"isint": "^1.0.0",
"js-vim-command": "*",
"mauve": "*",
"module-singleton": "^2.0.0",
"path-browserify": "0.0.0",
"punycode": "^1.4.0",
"querystring-es3": "^0.2.1",
"string_decoder": "^0.10.31",
"terminal-keys": "*",
"terminal-ui": "*",
"typeutils": "^1.0.1",
"u8-view": "^1.0.0",
"underscore": "1.4.4",
"url": "^0.11.0",
"util": "^0.10.3"
}
}