mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
bump packages
This commit is contained in:
parent
832e29d732
commit
c6bc0438de
@ -2,7 +2,7 @@ dist: xenial
|
||||
sudo: required
|
||||
language: node_js
|
||||
node_js:
|
||||
- '10'
|
||||
- '12'
|
||||
|
||||
services:
|
||||
- docker
|
||||
@ -22,8 +22,8 @@ before_script:
|
||||
- git clone https://github.com/oceanprotocol/barge
|
||||
- cd barge
|
||||
- export AQUARIUS_VERSION=v0.3.8
|
||||
- export BRIZO_VERSION=v0.4.4
|
||||
- export KEEPER_VERSION=v0.11.1
|
||||
- export BRIZO_VERSION=v0.4.5
|
||||
- export KEEPER_VERSION=v0.12.6
|
||||
- export EVENTS_HANDLER_VERSION=v0.1.2
|
||||
- export KEEPER_OWNER_ROLE_ADDRESS="0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"
|
||||
- bash -x start_ocean.sh --no-commons --local-spree-node 2>&1 > start_ocean.log &
|
||||
|
@ -7,11 +7,11 @@
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "keeper-contracts",
|
||||
"version": "~0.11.1"
|
||||
"version": "~0.12.6"
|
||||
},
|
||||
{
|
||||
"name": "brizo",
|
||||
"version": "~0.4.2"
|
||||
"version": "~0.4.5"
|
||||
},
|
||||
{
|
||||
"name": "aquarius",
|
||||
|
1840
package-lock.json
generated
1840
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
@ -52,47 +52,47 @@
|
||||
"web3": "^1.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@oceanprotocol/keeper-contracts": "^0.12.4",
|
||||
"@oceanprotocol/keeper-contracts": "^0.12.6",
|
||||
"@oceanprotocol/secret-store-client": "0.0.15",
|
||||
"bignumber.js": "^9.0.0",
|
||||
"deprecated-decorator": "^0.1.6",
|
||||
"node-fetch": "^2.6.0",
|
||||
"save-file": "^2.3.1",
|
||||
"uuid": "^3.3.3",
|
||||
"web3": "1.2.1",
|
||||
"whatwg-url": "^7.0.0"
|
||||
"web3": "1.2.2",
|
||||
"whatwg-url": "^7.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@release-it/bumper": "^1.0.3",
|
||||
"@types/chai": "^4.2.2",
|
||||
"@release-it/bumper": "^1.0.5",
|
||||
"@types/chai": "^4.2.4",
|
||||
"@types/chai-spies": "^1.0.1",
|
||||
"@types/mocha": "^5.2.7",
|
||||
"@types/node": "^12.7.5",
|
||||
"@types/node-fetch": "^2.5.0",
|
||||
"@typescript-eslint/eslint-plugin": "^2.2.0",
|
||||
"@typescript-eslint/parser": "^2.2.0",
|
||||
"auto-changelog": "^1.16.1",
|
||||
"@types/node": "^12.12.0",
|
||||
"@types/node-fetch": "^2.5.2",
|
||||
"@typescript-eslint/eslint-plugin": "^2.6.0",
|
||||
"@typescript-eslint/parser": "^2.6.0",
|
||||
"auto-changelog": "^1.16.2",
|
||||
"chai": "^4.2.0",
|
||||
"chai-spies": "^1.0.0",
|
||||
"cross-env": "^6.0.0",
|
||||
"eslint": "^6.3.0",
|
||||
"cross-env": "^6.0.3",
|
||||
"eslint": "^6.6.0",
|
||||
"eslint-config-oceanprotocol": "^1.5.0",
|
||||
"eslint-config-prettier": "^6.3.0",
|
||||
"eslint-plugin-prettier": "^3.1.0",
|
||||
"eslint-config-prettier": "^6.5.0",
|
||||
"eslint-plugin-prettier": "^3.1.1",
|
||||
"lcov-result-merger": "^3.1.0",
|
||||
"mocha": "^6.2.0",
|
||||
"mocha": "^6.2.2",
|
||||
"mock-local-storage": "^1.1.8",
|
||||
"nyc": "^14.1.1",
|
||||
"ora": "^4.0.0",
|
||||
"ora": "^4.0.2",
|
||||
"prettier": "^1.18.2",
|
||||
"source-map-support": "^0.5.13",
|
||||
"source-map-support": "^0.5.16",
|
||||
"truffle-hdwallet-provider": "^1.0.17",
|
||||
"ts-node": "^8.3.0",
|
||||
"ts-node": "^8.4.1",
|
||||
"typedoc": "^0.15.0",
|
||||
"typescript": "^3.6.3",
|
||||
"typescript": "^3.6.4",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"webpack": "^4.40.1",
|
||||
"webpack-cli": "^3.3.8",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-cli": "^3.3.9",
|
||||
"webpack-merge": "^4.2.2"
|
||||
},
|
||||
"nyc": {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import * as Web3 from 'web3'
|
||||
import Web3 from 'web3'
|
||||
import Config from './models/Config'
|
||||
import { Logger, LoggerInstance, LogLevel } from './utils'
|
||||
import Web3Provider from './keeper/Web3Provider'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import * as Web3 from 'web3'
|
||||
import Web3 from 'web3'
|
||||
import Web3Provider from '../keeper/Web3Provider'
|
||||
import LoggerInstance from '../utils/Logger'
|
||||
import { Ocean } from '../ocean/Ocean'
|
||||
|
@ -1,4 +1,4 @@
|
||||
import * as Web3 from 'web3'
|
||||
import Web3 from 'web3'
|
||||
import Config from '../models/Config'
|
||||
|
||||
export default class Web3Provider {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { assert, expect, spy, use } from 'chai'
|
||||
import * as spies from 'chai-spies'
|
||||
import * as Web3 from 'web3'
|
||||
import Web3 from 'web3'
|
||||
|
||||
import { DDO } from '../../src/ddo/DDO'
|
||||
import { Service } from '../../src/ddo/Service'
|
||||
|
Loading…
Reference in New Issue
Block a user