-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "ethdk",
"version": "0.0.1",
"description": "A package meant to make it easier to interact with the Ethereum blockchain.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Blake Duncan",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "mocha -r ts-node/register -r ./test/init.ts test/**/*.ts",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"bls-wallet-clients": "0.8.2-77f1638",
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.2.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "*"
}
}