-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "@goldenagellc/web3-blocks",
"version": "0.1.9",
"description": "Higher level building blocks to improve QoL when working with web3.js",
"author": "Golden Age Technologies LLC",
"license": "None",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@ethereumjs/common": "^2.0.0",
"@ethereumjs/tx": "^3.0.0",
"@ethersproject/hash": "^5.0.12",
"big.js": "^6.0.3",
"dotenv-safe": "^8.2.0",
"eth-crypto": "^1.9.0",
"web3": "^1.3.1",
"web3-core": "^1.3.1",
"web3-eth": "^1.3.1",
"web3-eth-abi": "^1.3.1",
"web3-eth-contract": "^1.3.1",
"web3-utils": "^1.3.1",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/big.js": "^6.0.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"ganache-cli": "^6.12.2",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "[email protected]:goldenagellc/web3-blocks.git"
},
"scripts": {
"build": "tsc -p .",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"test": "mocha -r ts-node/register test/*.test.ts test/**/*.test.ts",
"prepare": "npm run build"
}
}