-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
93 lines (93 loc) · 2.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nestjs-ethers",
"version": "2.2.0",
"description": "The ethers.js library for NestJS",
"author": "Blockcoders Engineering <hello@blockcoders.io>",
"license": "Apache",
"readmeFilename": "README.md",
"main": "dist/index.js",
"engineStrict": false,
"engines": {
"node": "^18.x || >=20.x || >=22.x"
},
"scripts": {
"build": "rm -rf ./dist && tsc --p tsconfig.build.json",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test,__tests__}/**/*.ts\" --fix",
"lint:ci": "eslint \"{src,apps,libs,test,__tests__}/**/*.ts\"",
"test": "tap --passes test/*.spec.ts",
"test:cov": "tap test/*.spec.ts --coverage-report=text-summary --coverage-report=lcovonly --allow-incomplete-coverage",
"prepublishOnly": "npm run lint:ci && npm run test"
},
"precommit": [
"lint:ci",
"test:cov"
],
"keywords": [
"ethers",
"ethers.js",
"ethereum",
"nestjs",
"nest.js",
"nest",
"blockchain"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/blockcoders/nestjs-ethers"
},
"homepage": "https://github.com/blockcoders/nestjs-ethers/blob/main/README.md",
"bugs": "https://github.com/blockcoders/nestjs-ethers/issues",
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/json-wallets": "^5.7.0",
"@ethersproject/logger": "^5.7.0",
"@ethersproject/networks": "^5.7.1",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@ethersproject/web": "^5.7.1",
"@ethersproject/wordlists": "^5.7.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@nestjs/common": "^10.4.6",
"@nestjs/core": "^10.4.6",
"@nestjs/platform-express": "^10.4.6",
"@nestjs/platform-fastify": "^10.4.6",
"@types/node": "^22.8.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"nock": "^13.5.5",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"tap": "^21.0.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@nestjs/common": "^10.2.7"
},
"tap": {
"diag": true,
"bail": true,
"comments": true,
"timeout": 40000
}
}