Version 1.3.6

* Upgraded dependencies
This commit is contained in:
Miro Metsänheimo 2022-02-05 00:06:04 +02:00
commit cd50b77d51
4 changed files with 362 additions and 559 deletions

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021 Miro Metsänheimo
Copyright (c) 2022 Miro Metsänheimo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -33,7 +33,7 @@ npm install nanocurrency-web
### In web
```html
<script src="https://unpkg.com/nanocurrency-web@1.3.5" type="text/javascript"></script>
<script src="https://unpkg.com/nanocurrency-web@1.3.6" type="text/javascript"></script>
<script type="text/javascript">
NanocurrencyWeb.wallet.generate(...);
</script>

899
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "nanocurrency-web",
"version": "1.3.5",
"version": "1.3.6",
"description": "Toolkit for Nano cryptocurrency client side offline integrations",
"author": "Miro Metsänheimo <miro@metsanheimo.fi>",
"license": "MIT",
@ -30,16 +30,16 @@
"test": "mocha --reporter spec"
},
"dependencies": {
"bignumber.js": "9.0.1",
"blakejs": "1.1.0",
"bignumber.js": "9.0.2",
"blakejs": "1.1.1",
"crypto-js": "3.1.9-1"
},
"devDependencies": {
"chai": "4.3.4",
"mocha": "9.0.0",
"ts-loader": "9.2.3",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.2"
"chai": "4.3.6",
"mocha": "9.2.0",
"ts-loader": "9.2.6",
"typescript": "4.5.5",
"webpack": "5.68.0",
"webpack-cli": "4.9.2"
}
}