-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 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
63
64
65
{
"name": "@vechain/web3-providers-connex",
"version": "1.1.2",
"description": "Implementation of the JSON-RPC provider for the VeChain Thor protocol, compatible with web3.js and ethers.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "npm run build",
"build": "rm -rf dist/ && node_modules/.bin/tsc -d -p . ",
"test": "nyc --reporter=lcov mocha --no-timeouts test/**/*.test.ts",
"test-web3": "mocha --no-timeouts test/web3/*.test.ts",
"test-ethers": "mocha --no-timeouts test/ethers/*.test.ts",
"test-restful": "mocha --no-timeouts test/restful/*.test.ts",
"test-provider": "mocha --no-timeouts test/provider/*.test.ts"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/*.ts"
],
"exclude": [
"src/ethers.ts",
"src/compatProvider.ts"
],
"all": true,
"check-coverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/web3-providers-connex.git"
},
"author": "Peter Zhou",
"license": "LGPL-3.0",
"dependencies": {
"@vechain/connex-types": "^2.0.2",
"eventemitter3": "^5.0.1",
"thor-devkit": "^2.0.4",
"web3-utils": "^4.0.6",
"web3-validator": "^2.0.2"
},
"peerDependencies": {
"ethers": "^6.7.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"@vechain/connex-driver": "^2.0.10",
"@vechain/connex-framework": "^2.0.8",
"chai": "^4.3.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"testcontainers": "^10.2.1",
"thor-builtin": "^2.0.2",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.1.6",
"web3": "^4.1.1"
}
}