forked from AraiEzzra/DVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "DVM",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npx tslint --project .",
"test-runner": "npx ts-node -r tsconfig-paths/register test/runner",
"test:unit": "npx mocha",
"test:vm": "npm run test-runner -- --module=VMTests",
"test:state": "npm run test-runner -- --module=GeneralStateTests",
"test": "npm run test:unit && npm run test:vm && npm run test:state"
},
"keywords": [],
"author": "user-dob <[email protected]>",
"license": "ISC",
"dependencies": {
"bigint-buffer": "^1.1.2",
"keccak": "^2.0.0",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/ethereumjs-tx": "^1.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"bn.js": "^5.0.0",
"chai": "^4.2.0",
"ethereumjs-tx": "^2.1.1",
"merkle-patricia-tree": "^3.0.0",
"mocha": "^6.2.0",
"rlp": "^2.2.3",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0"
}
}