forked from SuperblocksHQ/super-web3-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "super-web3-provider",
"version": "0.0.21",
"description": "Web3 provider to create a secure channel between our CI runners and the Superblocks platform to handle Smart Contract deployments through our blockchain dedicated DevOps platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"build": "tsc",
"publish-lib": "node publish.js",
"test": "mocha --require ts-node/register --exit src/**/*spec.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:SuperblocksHQ/super-web3-provider.git"
},
"author": "Superblocks",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperblocksHQ/super-web3-provider/issues"
},
"homepage": "https://www.superblocks.com",
"devDependencies": {
"@types/ethereum-protocol": "^1.0.0",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.5.3",
"@types/pusher-js": "^4.2.2",
"fetch-mock": "^8.0.1",
"mocha": "^6.2.2",
"ts-node": "^8.5.4",
"ts-sinon": "^1.0.24",
"tslint": "^5.20.1",
"typescript": "^3.5.1"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.0.27",
"ethereum-protocol": "^1.0.1",
"inversify": "^5.0.1",
"node-fetch": "^2.6.0",
"ora": "^4.0.3",
"pusher-js": "5.0.2 ",
"reflect-metadata": "^0.1.13",
"web3-provider-engine": "https://github.com/trufflesuite/provider-engine#web3-one",
"web3-utils": "^1.2.4"
}
}