Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scientistnik committed Nov 23, 2019
1 parent 67c9142 commit 2f94a03
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"targets": {
"browsers": "> 5%",
"node": "10"
"node": "12"
}
}
]
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
},
"scripts": {
"dev": "nodemon --exec yarn build --watch src",
"prebuild": "rm lib -rf",
"prebuild": "rm -rf lib",
"build": "babel src -d lib",
"postbuild": "yarn browserify",
"prebrowserify": "rm build -rf",
"prebrowserify": "rm -rf build",
"browserify": "browserify lib/index.js --standalone BitShares -o build/btsdex.js -d",
"postbrowserify": "minify build/btsdex.js -o build/btsdex.min.js",
"test": "mocha --timeout 10000"
Expand All @@ -22,27 +22,27 @@
"author": "scientistnik",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.1.2",
"assert": "^1.4.1",
"@babel/runtime": "^7.7.4",
"assert": "^1.5.0",
"bigi": "^1.4.2",
"bignumber.js": "^7.2.1",
"btsdex-api": "^0.7.2",
"btsdex-ecc": "^0.7.0",
"btsdex-serializer": "^0.7.1",
"bytebuffer": "^5.0.1",
"lzma": "^2.3.2",
"safe-buffer": "^5.1.2"
"safe-buffer": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-minify": "^0.5.0",
"browserify": "^16.2.2",
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-minify": "^0.5.1",
"browserify": "^16.5.0",
"dotenv": "^6.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.10"
"nodemon": "^1.19.4"
}
}
2 changes: 1 addition & 1 deletion packages/api/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"targets": {
"browsers": "> 5%",
"node": "10"
"node": "12"
}
}
]
Expand Down
21 changes: 11 additions & 10 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"prebuild": "rm lib build -rf",
"prebuild": "rm -rf lib build",
"build": "babel src -d lib",
"postbuild": "yarn browserify && yarn minify",
"browserify": "browserify lib/index.js --standalone btsdex-api -o build/btsdex-api.js -d",
Expand All @@ -13,17 +13,18 @@
"test": "mocha --require @babel/register"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-minify": "^0.5.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10"
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-minify": "^0.5.1",
"browserify": "^16.5.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4"
},
"dependencies": {
"isomorphic-ws": "^4.0.1",
"ws": "^6.1.4"
"ws": "^6.2.1"
}
}
2 changes: 1 addition & 1 deletion packages/ecc/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"targets": {
"browsers": "> 5%",
"node": "10"
"node": "12"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion packages/serializer/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"targets": {
"browsers": "> 5%",
"node": "10"
"node": "12"
}
}
]
Expand Down

0 comments on commit 2f94a03

Please sign in to comment.