forked from EthVM/EthVM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "ethvm-dev-kit",
"version": "1.0.0",
"description": "A complete Docker solution for developing EthVM project ",
"repository": {
"type": "git",
"url": "git+https://github.com/enKryptIO/ethvm-dev-kit.git"
},
"author": "enKryptIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/enKryptIO/ethvm-dev-kit/issues"
},
"homepage": "https://github.com/enKryptIO/ethvm-dev-kit#readme",
"config": {
"ghooks": {
"pre-commit": "opt --in pre-commit --exec 'yarn format'"
}
},
"scripts": {
"monkey": "ts-node bin/monkey-cli.ts",
"format": "yarn lint:fix && yarn prettier",
"lint": "tslint -c tslint.json --project .",
"lint:fix": "tslint -c tslint.json --project . --fix",
"prettier": "prettier --write 'bin/**/*.ts'"
},
"devDependencies": {
"@enkrypt.io/json-rpc2": "^1.0.2",
"@types/ethereumjs-abi": "^0.6.1",
"@types/ethereumjs-tx": "^1.0.0",
"@types/ethereumjs-util": "^5.2.0",
"@types/node": "^10.7.0",
"@types/ora": "^1.3.4",
"@types/web3": "^1.0.3",
"commander": "^2.17.1",
"ethereumjs-tx": "^1.3.7",
"ghooks": "^2.0.4",
"lerna": "^3.0.5",
"opt-cli": "^1.6.0",
"ora": "^3.0.0",
"prettier": "1.14.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-consistent-codestyle": "^1.13.3",
"typescript": "^3.0.1",
"web3-utils": "^1.0.0-beta.35"
},
"dependencies": {
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0"
}
}