-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "wasm-jit",
"version": "1.2.2",
"description": "WebAssembly JIT Compiler",
"main": "lib/wasm.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/indutny/wasm-jit.git"
},
"keywords": [
"wasm",
"web",
"assembly",
"jit",
"compiler",
"webasm",
"asm",
"web"
],
"author": "Fedor Indutny <fedor@indutny.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/wasm-jit/issues"
},
"homepage": "https://github.com/indutny/wasm-jit#readme",
"dependencies": {
"bindings": "^1.2.1",
"bn.js": "^3.2.0",
"debug": "^2.2.0",
"dominance-frontier": "^2.0.0",
"gvn": "^1.0.0",
"jit.js": "^1.16.0",
"json-pipeline-reducer": "^1.4.0",
"json-pipeline-scheduler": "^2.0.0",
"linearscan": "^5.1.0",
"mmap.js": "^1.0.1",
"nan": "^2.1.0",
"ssa.js": "^2.0.0",
"wasm-ast": "^3.0.1",
"wasm-cfg": "^3.0.0"
},
"devDependencies": {
"assert-text": "^1.1.2",
"disasm": "^1.5.0",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"json-pipeline": "^3.8.0",
"mocha": "^2.3.3"
}
}