-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "primea-hypervisor",
"version": "0.9.3",
"description": "this is a JS implemention of the primea hypervisor",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"build:docs": "npm run build:docs:hypervisor && npm run build:docs:actor",
"build:docs:hypervisor": "documentation build ./index.js --github --shallow --sort-order source -f md > ./docs/hypervisor.md",
"build:docs:actor": "documentation build ./actor.js --github --shallow --sort-order source -f md > ./docs/actor.md",
"test": "node ./tests/index.js",
"test:wasm": "node ./tests/wasmContainer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/primea/js-primea-hypervisor.git"
},
"bugs": {
"url": "https://github.com/primea/js-primea-hypervisor/issues"
},
"homepage": "https://github.com/primea/js-primea-hypervisor",
"keywords": [
"primea",
"hypervisor",
"kernel"
],
"author": "mjbecze <mjbecze@gmail.com>",
"contributors": "Alex Beregszaszi <alex@rtfs.hu>",
"license": "MPL-2.0",
"dependencies": {
"binary-search-insert": "^1.0.3",
"debug": "^3.1.0",
"events": "^3.0.0",
"primea-objects": "0.1.1",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"coveralls": "^3.0.1",
"dfinity-radix-tree": "^0.2.5",
"documentation": "^8.0.0",
"level-browserify": "^1.1.2",
"nyc": "^12.0.2",
"standard": "11.0.1",
"tape": "^4.9.1"
}
}