-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.83 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
63
{
"name": "dgeth",
"version": "0.0.0",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/sambacha/dgeth.git"
},
"keywords": [],
"author": "sam bacha",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/sambacha/dgeth/issues"
},
"homepage": "https://github.com/sambacha/dgeth#readme",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.ts",
"types": "dist/esm/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"test": "mocha",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint --fix '{src,test}/**/*.ts'",
"build": "rimraf ./dist && yarn build:esm && yarn build:cjs",
"build:esm": "tsc -p tsconfig.build.json --outDir dist/esm --module ES6",
"build:cjs": "tsc -p tsconfig.build.json --outDir dist/cjs --declaration false",
"build:go": "cd go; bash build.sh; cd -"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/networks": "^5.6.3",
"@ethersproject/properties": "^5.6.0",
"@types/ffi-napi": "^4.0.4",
"@types/node": "^16",
"@types/verror": "^1.10.5",
"ethers": "^5.6.8",
"ffi-napi": "^4.0.3",
"verror": "^1.10.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@typescript/analyze-trace": "^0.9.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"eslint": "^8.17.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"process-tracing": "^1.0.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.8.1",
"typescript": "4.6.3",
"typescript-eslint-language-service": "^5.0.0"
}
}