-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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": "@web3xlabs/ethclients.js",
"version": "1.0.0",
"description": "Collection of EVM-based client connectors",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/web3xlabs/ethclients.js.git"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc --project ./",
"prestart": "npm run build",
"start": "node .",
"run": "node .",
"prepare": "npm run build && ts-patch install -s"
},
"keywords": [],
"author": "Nick Wilging <nick@epautomotive.org>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/jest-when": "^2.7.3",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"jest-each": "^27.2.0",
"jest-when": "^3.4.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-patch": "^2.0.1",
"typescript": "^4.4.3",
"typescript-transform-paths": "^3.3.1",
"web3-core": "^1.5.3"
},
"dependencies": {
"module-alias": "^2.2.2",
"web3": "^1.5.3"
},
"files": [
"lib/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"_moduleAliases": {
"@ethclients": "lib"
}
}