From 6f4c9a937989e858da942a50522391b59869ffb7 Mon Sep 17 00:00:00 2001 From: Marek Serafin Date: Sat, 2 Aug 2014 19:03:40 +0200 Subject: [PATCH] Added Dependencies --- lib/itc-cmd.js => bin/cli.js | 0 lib/itc-report.js => index.js | 0 package.json | 16 ++++++++++++++-- 3 files changed, 14 insertions(+), 2 deletions(-) rename lib/itc-cmd.js => bin/cli.js (100%) rename lib/itc-report.js => index.js (100%) diff --git a/lib/itc-cmd.js b/bin/cli.js similarity index 100% rename from lib/itc-cmd.js rename to bin/cli.js diff --git a/lib/itc-report.js b/index.js similarity index 100% rename from lib/itc-report.js rename to index.js diff --git a/package.json b/package.json index 1b79168..63c4ea6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,10 @@ "name": "itc-report", "version": "0.0.1", "description": "node.js iTunes Connect Reporting module", - "main": "index.js", + "main": "./index.js", + "bin": { + "itcreport": "./bin/cli.js" + }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -22,5 +25,14 @@ "bugs": { "url": "https://github.com/stoprocent/itc-report/issues" }, - "homepage": "https://github.com/stoprocent/itc-report" + "homepage": "https://github.com/stoprocent/itc-report", + "dependencies": { + "path": "~0.4.9", + "commander": "~2.3.0", + "colors": "~0.6.2", + "underscore": "~1.6.0", + "moment": "~2.8.1", + "request": "~2.39.0", + "cheerio": "~0.17.0" + } }