forked from opengsn/gsn
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.57 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 4.57 KB
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
{
"version": "2.0.0-beta.2",
"description": "Open Gas Stations Network",
"name": "@opengsn/gsn",
"license": "MIT",
"repository": {
"url": "https://github.com/opengsn/gsn",
"type": "git"
},
"contributors": [
{
"name": "Dror Tirosh",
"email": "dror.tirosh@gmail.com"
},
{
"name": "Yoav Weiss",
"email": "yoav@opengsn.org"
},
{
"name": "Shahaf Nacson",
"email": "shahaflol@gmail.com"
},
{
"name": "Alex Forshtat",
"email": "forshtat1@gmail.com"
}
],
"bin": {
"gsn": "dist/src/cli/commands/gsn.js"
},
"prepublish": "npm run prepare",
"scripts": {
"test": "yarn run lint && yarn generate && yarn tsc && npm run test-js",
"ganache": "ganache-cli --hardfork 'istanbul' --gasLimit 100000000 --defaultBalanceEther 1000 --deterministic --keepAliveTimeout 2147483647",
"test-js": "run-with-testrpc --hardfork 'istanbul' --port 8544 --gasLimit 10000000 --defaultBalanceEther 1000 --deterministic 'npx truffle --network npmtest test'",
"test-bail": "run-with-testrpc --hardfork 'istanbul' --port 8544 --gasLimit 10000000 --defaultBalanceEther 1000 --deterministic 'npx truffle --network npmtest test --bail'",
"extract_abi": "./scripts/extract_abi.js",
"truffle-test": "yarn tsc && npx truffle test",
"truffle-compile": "truffle compile",
"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",
"tsc": "tsc --noEmit",
"postinstall": "patch-package",
"postpack": "./scripts/postpack",
"prepare": "./scripts/prepublish"
},
"dependencies": {
"@openeth/truffle-typings": "0.0.6",
"@openzeppelin/contracts": "3.0.2",
"@truffle/contract": "4.2.4",
"@truffle/hdwallet-provider": "1.0.34",
"@types/chai": "4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/cors": "^2.8.6",
"@types/eth-sig-util": "2.1.0",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.150",
"@types/minimist": "1.2.0",
"@types/nedb": "1.8.9",
"@types/node": "13.9.1",
"@types/semver": "^7.3.1",
"@types/sinon": "9.0.0",
"@types/sinon-chai": "3.2.4",
"@types/web3": "1.2.2",
"abi-decoder": "2.2.2",
"async-mutex": "^0.2.1",
"axios": "0.18.1",
"big.js": "5.2.2",
"bn.js": "5.1.2",
"body-parser": "1.19.0",
"chai": "4.2.0",
"commander": "5.1.0",
"console-read-write": "^0.1.1",
"date-format": "^3.0.0",
"eth-sig-util": "2.5.2",
"ethereumjs-common": "^1.5.0",
"ethereumjs-tx": "2.1.2",
"ethereumjs-util": "6.2.0",
"ethereumjs-wallet": "0.6.3",
"express": "4.17.1",
"jsonrpc-lite": "2.1.0",
"lodash": "4.17.19",
"minimist": "1.2.5",
"nedb-async": "0.1.3",
"ow": "0.17.0",
"patch-package": "6.2.1",
"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.2.6",
"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": "4.1.0",
"@openzeppelin/test-helpers": "0.5.5",
"@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",
"ganache-cli": "6.9.1",
"ganache-core": "2.10.2",
"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.26",
"truffle-hdwallet-provider": "1.0.17",
"ts-node": "8.6.2",
"typechain": "1.0.5",
"typechain-target-trufflehotfix": "0.0.4-alpha",
"typescript": "3.8.3",
"web3-provider-engine": "14.1.0",
"webpack": "4.37.0",
"webpack-cli": "3.3.6"
},
"files": [
"contracts/",
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}