This repository has been archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "runtimejs",
"version": "0.2.16",
"description": "Core runtime.js library",
"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"
},
"repository": {
"type": "git",
"url": "[email protected]:runtimejs/runtime.git"
},
"author": "runtime.js project authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/runtimejs/runtime/issues"
},
"homepage": "http://runtimejs.org",
"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.0.0"
},
"runtimejs": {
"debug": false
},
"dependencies": {
"assert": "^1.3.0",
"assert-error": "^1.0.2",
"bit-twiddle": "^1.0.2",
"buffer": "^4.3.0",
"constants-browserify": "^1.0.0",
"event-controller": "^1.0.1",
"events": "^1.1.0",
"int64-buffer": "^0.1.9",
"isint": "^1.0.0",
"module-singleton": "^2.0.0",
"path-browserify": "0.0.0",
"punycode": "^1.4.0",
"querystring-es3": "^0.2.1",
"readable-stream": "^2.0.5",
"string_decoder": "^0.10.31",
"typeutils": "^1.0.1",
"u8-view": "^1.0.0",
"url": "^0.11.0",
"util": "^0.10.3"
}
}