This repository was archived by the owner on May 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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": "@haderech/vert",
"version": "0.1.1",
"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"
],
"scripts": {
"build": "rm -rf dist && tsc",
"build-web": "webpack",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"start": "node dist/index",
"test": "mocha src/**/*.spec.ts -r ts-node/register"
},
"author": "Jeeyong Um <conr2d@gmail.com>",
"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",
"chai": "^4.3.6",
"clean-webpack-plugin": "^4.0.0",
"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",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"bn.js": "^5.2.0",
"brorand": "^1.1.0",
"elliptic": "^6.5.4",
"hash.js": "^1.1.7",
"loglevel": "^1.8.0",
"loglevel-plugin-prefix": "^0.8.4",
"sorted-btree": "^1.6.0"
}
}