-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@proton/vert",
"version": "0.3.21",
"homepage": "https://github.com/haderech/vert",
"description": "VM emulation RunTime for WASM-based blockchain contracts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -rf dist && tsc && node bundle.js",
"build-web": "webpack",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"start": "node dist/index",
"test": "mocha src/**/*.spec.ts -r ts-node/register && yarn --cwd examples test",
"prepublish": "npm run test && npm run build"
},
"author": "Jeeyong Um <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"esbuild": "^0.14.28",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^9.2.1",
"node-stdlib-browser": "^1.2.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"util": "^0.12.4",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@ethereumjs/util": "^8.0.0-beta.1",
"@greymass/eosio": "^0.5.5",
"bn.js": "^5.2.0",
"brorand": "^1.1.0",
"chai": "^4.3.6",
"colors": "^1.4.0",
"cross-fetch": "^3.1.5",
"elliptic": "^6.5.4",
"hash.js": "^1.1.7",
"js-sha3": "^0.8.0",
"json-diff": "^0.9.0",
"json-diff-ts": "^1.2.4",
"lodash": "^4.17.21",
"lodash.set": "^4.3.2",
"loglevel": "^1.8.0",
"loglevel-plugin-prefix": "^0.8.4",
"rustbn.js": "^0.2.0",
"sorted-btree": "^1.6.0"
}
}