1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00

Merge pull request #384 from oceanprotocol/feature/packages

package updates
This commit is contained in:
Matthias Kretschmann 2020-03-17 11:04:37 +01:00 committed by GitHub
commit f98e140455
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1302 additions and 1307 deletions

2566
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -58,43 +58,43 @@
"deprecated-decorator": "^0.1.6", "deprecated-decorator": "^0.1.6",
"node-fetch": "^2.6.0", "node-fetch": "^2.6.0",
"save-file": "^2.3.1", "save-file": "^2.3.1",
"uuid": "^3.4.0", "uuid": "^7.0.2",
"web3": "^1.2.5", "web3": "^1.2.6",
"whatwg-url": "^8.0.0" "whatwg-url": "^8.0.0"
}, },
"devDependencies": { "devDependencies": {
"@release-it/bumper": "^1.0.5", "@release-it/bumper": "^1.1.0",
"@truffle/hdwallet-provider": "^1.0.29", "@truffle/hdwallet-provider": "^1.0.33",
"@types/chai": "^4.2.8", "@types/chai": "^4.2.11",
"@types/chai-spies": "^1.0.1", "@types/chai-spies": "^1.0.1",
"@types/mocha": "^7.0.1", "@types/mocha": "^7.0.2",
"@types/node": "^13.5.1", "@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.4", "@types/node-fetch": "^2.5.5",
"@types/sinon": "^7.5.1", "@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.18.0", "@typescript-eslint/parser": "^2.23.0",
"auto-changelog": "^1.16.2", "auto-changelog": "^1.16.2",
"chai": "^4.2.0", "chai": "^4.2.0",
"chai-spies": "^1.0.0", "chai-spies": "^1.0.0",
"cross-env": "^7.0.0", "cross-env": "^7.0.2",
"eslint": "^6.8.0", "eslint": "^6.8.0",
"eslint-config-oceanprotocol": "^1.5.0", "eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.10.0", "eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2", "eslint-plugin-prettier": "^3.1.2",
"lcov-result-merger": "^3.1.0", "lcov-result-merger": "^3.1.0",
"mocha": "^7.0.1", "mocha": "^7.1.0",
"mock-local-storage": "^1.1.11", "mock-local-storage": "^1.1.11",
"nyc": "^15.0.0", "nyc": "^15.0.0",
"ora": "^4.0.2", "ora": "^4.0.2",
"prettier": "^1.19.1", "prettier": "^1.19.1",
"sinon": "^8.1.1", "sinon": "^9.0.1",
"source-map-support": "^0.5.16", "source-map-support": "^0.5.16",
"ts-node": "^8.6.2", "ts-node": "^8.6.2",
"typedoc": "^0.16.9", "typedoc": "^0.16.11",
"typescript": "^3.7.5", "typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0", "uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5", "webpack": "^4.42.0",
"webpack-cli": "^3.3.10", "webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2" "webpack-merge": "^4.2.2"
}, },
"nyc": { "nyc": {

View File

@ -7,6 +7,13 @@ import config from '../config'
interface ContractTest extends Contract { interface ContractTest extends Contract {
testContract?: boolean testContract?: boolean
$initialized?: boolean $initialized?: boolean
options?: {
address: string
}
methods?: {
addMinter(address: string): any
initialize(...args: any[]): any
}
} }
export default class TestContractHandler extends ContractHandler { export default class TestContractHandler extends ContractHandler {