-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.73 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.73 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
{
"name": "evmc",
"version": "1.0.8",
"description": "Ethereum EVMC bindings for node.js",
"main": "dist/evmc.js",
"types": "dist/evmc.d.ts",
"scripts": {
"benchmark": "node -r ts-node/register src/evmc.bench.ts",
"test": "git submodule update --init --recursive; mkdir -p libbuild; cd libbuild;mkdir aleth; cd aleth; cmake ../../aleth -DALETH_INTERPRETER_SHARED=true -DTOOLS=false -DTESTS=false; cd libaleth-interpreter; cmake --build .; cd ..; cd ..;cd ..;mocha -r ts-node/register src/*.spec.ts --timeout 40000",
"rebuild": "git submodule update --init --recursive; mkdir -p libbuild; cd libbuild;mkdir evmc; cd evmc; cmake ../../evmc; cmake --build .;cd ..;cd ..;node-gyp rebuild",
"typedoc": "typedoc --out docs $(pwd)/src --target es6 --mode file --tsconfig ./tsconfig.json --excludePrivate --excludeProtected --excludeNotExported --exclude '**/*+(spec|bench).ts'",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"install": "npm run rebuild",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"keywords": [
"ethereum",
"evmc",
"evm"
],
"author": "Michael Wei <mwei@cs.ucsd.edu>",
"license": "Apache-2.0",
"devDependencies": {
"gts": "^0.9.0",
"typescript": "^3.3.1"
},
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.6",
"benchmark": "^2.1.4",
"bindings": "^1.5.0",
"chai": "^4.2.0",
"evmasm": "0.0.3",
"mocha": "^6.0.2",
"node-gyp": "^3.8.0",
"segfault-handler": "^1.0.1",
"ts-node": "^8.0.2",
"typedoc": "^0.14.2"
}
}