forked from vechain/web3-providers-connex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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": "@vechain/web3-providers-connex",
"version": "1.0.0",
"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": {
"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": "^4.0.4",
"thor-devkit": "^2.0.4",
"web3-utils": "^1.7.3"
},
"peerDependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^10.17.60",
"@vechain/connex-driver": "^2.0.10",
"@vechain/connex-framework": "^2.0.8",
"chai": "^4.3.6",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"testcontainers": "^9.1.1",
"thor-builtin": "^1.0.0",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.5.5",
"web3": "^1.7.3"
}
}