-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "@sebastinez/web3conv",
"version": "1.2.0",
"description": "CLI App for type conversion in the cripto universe",
"main": "web3conv",
"scripts": {
"build": "tsc -b",
"build:dev": "tsc -w",
"start": "node dist/web3conv.js",
"format": "prettier -w .",
"test": "mocha -r ts-node/register 'tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastinez/web3conv.git"
},
"keywords": [
"Ethereum",
"JavaScript"
],
"author": {
"name": "Sebastian Martinez<[email protected]>",
"url": "https://github.com/sebastinez"
},
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/sebastinez/web3conv/issues"
},
"homepage": "https://github.com/sebastinez/web3conv#readme",
"dependencies": {
"base-x": "3.0.6",
"chalk": "2.4.2",
"ethereum-cryptography": "^0.1.3",
"utf8": "3.0.0",
"yargs": "14.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "15.0.3",
"@types/utf8": "2.1.6",
"@types/yargs": "16.0.1",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"mocha": "^8.4.0",
"prettier": "2.3.0",
"ts-node": "^9.1.1",
"typescript": "4.2.4"
}
}