forked from rsksmart/rif-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 4.51 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"version": "1.0.0",
"description": "RIF Enveloping",
"name": "@rsksmart/enveloping",
"license": "MIT",
"repository": {
"url": "https://github.com/rsksmart/enveloping",
"type": "git"
},
"contributors": [
{
"name": "Julian Len",
"email": "[email protected]"
},
{
"name": "Raul Laprida",
"email": "[email protected]"
},
{
"name": "Diego Masini",
"email": "[email protected]"
}
],
"bin": {
"enveloping": "dist/src/cli/commands/enveloping.js"
},
"prepublish": "npm run prepare",
"scripts": {
"extract_abi": "./scripts/extract_abi.js",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix",
"lint:js": "eslint -f unix .",
"lint:sol": "solhint -f unix \"contracts/**/*.sol\" --max-warnings 0",
"lint:js:fix": "eslint --ext .js,.ts --cache -f unix --ignore-path .gitignore src test scripts --fix",
"generate": "rm -rf ./build/contracts && npx truffle compile && typechain --target trufflehotfix './build/contracts/**/*.json' && yarn run extract_abi",
"truffle-compile": "truffle compile",
"postinstall": "patch-package",
"postpack": "./scripts/postpack",
"prepare": "./scripts/prepublish",
"test": "yarn run lint && yarn generate && yarn tsc && ./run-tests.sh",
"test-bail": "yarn run lint && yarn generate && yarn tsc && npx truffle test --network development --bail",
"tsc": "tsc --noEmit",
"relay": "./scripts/startRelayServer",
"registerRelay": "./scripts/registerRelayServer",
"execute-test": "./scripts/execute-test",
"execute-all-tests": "./scripts/execute-all-tests"
},
"dependencies": {
"@openeth/truffle-typings": "0.0.6",
"@openzeppelin/contracts": "^3.2.0",
"@truffle/contract": "^4.2.23",
"@truffle/hdwallet-provider": "1.2.3",
"@trufflesuite/web3-provider-engine": "^15.0.13-1",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.7",
"@types/eth-sig-util": "2.1.0",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/minimist": "^1.2.0",
"@types/nedb": "^1.8.11",
"@types/node": "^13.0.0",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/web3": "1.2.2",
"@types/web3-provider-engine": "^14.0.0",
"abi-decoder": "^2.3.0",
"async-mutex": "^0.2.4",
"axios": "^0.21.1",
"bn.js": "5.1.2",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"console-read-write": "^0.1.1",
"date-format": "^3.0.0",
"eth-sig-util": "2.5.2",
"ethereum-cryptography": "^0.1.3",
"ethereumjs-common": "^1.5.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.2.1",
"ethereumjs-wallet": "^1.0.1",
"ethers": "5.0.32",
"ethval": "^2.1.1",
"express": "^4.17.1",
"jsonrpc-lite": "^2.2.0",
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"minimist": "^1.2.5",
"nedb-async": "^0.1.3",
"ow": "^0.17.0",
"patch-package": "^6.4.6",
"semver": "^7.3.2",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "1.2.6",
"web3-core": "1.2.6",
"web3-core-helpers": "1.2.6",
"web3-eth": "1.2.6",
"web3-eth-abi": "1.3.0",
"web3-eth-contract": "1.2.6",
"web3-utils": "1.2.6"
},
"devDependencies": {
"@0x/sol-coverage": "4.0.8",
"@0x/sol-profiler": "4.0.8",
"@0x/sol-trace": "3.0.8",
"@0x/subproviders": "6.4.1",
"@openzeppelin/test-helpers": "0.5.10",
"@typescript-eslint/eslint-plugin": "3.0.2",
"@typescript-eslint/parser": "3.0.2",
"chai-as-promised": "7.1.1",
"cors": "2.8.5",
"eslint": "7.3.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eth-gas-reporter": "^0.2.22",
"ganache-cli": "^6.12.1",
"ganache-core": "^2.13.1",
"husky": "^4.2.5",
"rlp": "2.2.3",
"run-with-testrpc": "0.3.1",
"shx": "0.3.2",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"solhint": "3.0.0",
"truffle": "^5.1.52",
"ts-node": "8.6.2",
"typechain": "1.0.5",
"typechain-target-trufflehotfix": "0.0.4-alpha",
"typescript": "3.8.3",
"web3-provider-engine": "16.0.1",
"webpack": "4.37.0",
"webpack-cli": "3.3.6"
},
"files": [
"contracts/",
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}