-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
75 lines (75 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "web3x-evm",
"version": "4.0.3",
"license": "MIT",
"description": "EVM implementation and provider for web3x.",
"repository": {
"type": "git",
"url": "https://github.com/xf00f/web3x.git"
},
"homepage": "https://github.com/xf00f/web3x",
"bugs": {
"url": "https://github.com/xf00f/web3x/issues"
},
"keywords": [
"ethereum",
"typescript",
"web3",
"evm"
],
"contributors": [
{
"name": "xf00f",
"email": "[email protected]",
"url": "https://github.com/xf00f"
}
],
"sideEffects": false,
"scripts": {
"build": "yarn clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.es.json && node ./package.js",
"test": "jest",
"clean": "rm -rf ./dest ./dest-es"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.test\\.(tsx?|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"reporters": [
"jest-dot-reporter"
],
"rootDir": "./src"
},
"dependencies": {
"@types/levelup": "^3.1.0",
"bigint-buffer": "^1.1.2",
"bn.js": "^4.11.8",
"level-js": "^4.0.0",
"levelup": "^4.0.0",
"merkle-patricia-tree": "^3.0.0",
"rustbn.js": "^0.2.0",
"tslib": "^1.10.0",
"web3x": "file:../web3x/dest"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/memdown": "^3.0.0",
"coveralls": "^3.0.2",
"jest": "^24.5.0",
"jest-dot-reporter": "^1.0.7",
"memdown": "^3.0.0",
"replace-in-files": "^1.1.4",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
}
}