diff options
author | Piyush Dixit <79581397+PiyushDixit96@users.noreply.github.com> | 2021-05-10 23:51:24 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 23:51:24 +0530 |
commit | e3293952db437fa61760ec4fd7991d1b1b505039 (patch) | |
tree | ed5177f9ced0f329775e3276e38ce8c1641d19cf | |
parent | ac491dc579322bfcf08ce4002fb3832bc330ddd0 (diff) |
change node and npm version
-rw-r--r-- | package.json | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/package.json b/package.json index 6bd39b7..766bf0a 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,16 @@ { "name": "binance-spot-order-notifier", "version": "1.0.0", - "description": "Binance does not currently offer notification when order created, cancelled or fulfilled etc.. With this repo you will receive telegram notification for your binance spot order status.", + "description": "Binance does not currently offer notifications when orders are created, cancelled or fulfilled etc.. With this repo you will receive telegram notifications for your binance spot order status.", "main": "index.js", - "repository" : { - "type" : "git", - "url" : "https://github.com/PiyushDixit96/binance-order-notifier.git" - }, + "repository": { + "type": "git", + "url": "https://github.com/PiyushDixit96/binance-order-notifier.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "start": "node index.js" + }, "dependencies": { "binance": "^1.3.5", "dotenv": "^9.0.0", @@ -14,8 +18,9 @@ "slimbot": "^5.1.0" }, "devDependencies": {}, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "engines": { + "node": "14.x", + "npm": "6.x" }, "keywords": [], "author": "Piyush Dixit", |