From 0d873458491cef2244ed4112ed2875a2ca7e03bd Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sat, 5 May 2018 08:26:00 -0300 Subject: [PATCH] Contained .js files into the final package. --- .npmignore | 5 +++++ package.json | 28 ++++++++++++++-------------- 2 files changed, 19 insertions(+), 14 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..540ce14d --- /dev/null +++ b/.npmignore @@ -0,0 +1,5 @@ +node_modules +/deploy/default.gbui/build +/guaribas.sqlite +/guaribas.log +/work \ No newline at end of file diff --git a/package.json b/package.json index 898c4b9a..1a1bc942 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "botserver", - "version": "0.0.16", + "version": "0.0.17", "description": "General Bots Community Edition open-core server.", "author": "me@rodrigorodriguez.com", "license": "AGPL-3.0", "main": "./src/app.ts", "preferGlobal": "true", "bin": { - "gbot" : "./dist/src/app.js" + "gbot": "./dist/src/app.js" }, "homepage": "http://pragmatismo.io", "scripts": { @@ -23,9 +23,13 @@ "node": ">=8.9.4" }, "dependencies": { + "@types/azure": "^0.9.19", + "@types/chai": "4.0.4", + "@types/mocha": "2.2.43", "async": "^1.5.2", "botbuilder": "^3.14.0", "botlib": "0.0.12", + "chai": "^4.1.2", "chokidar": "^2.0.2", "csv-parse": "^2.2.0", "dotenv-extended": "^1.0.4", @@ -33,24 +37,20 @@ "fs-extra": "^5.0.0", "fs-walk": "0.0.1", "marked": "^0.3.12", - "pragmatismo-io-framework": "^1.0.6", + "mocha": "^3.5.3", + "mocha-typescript": "^1.1.12", + "pragmatismo-io-framework": "^1.0.11", "reflect-metadata": "^0.1.12", "request-promise-native": "^1.0.5", "sequelize": "^4.37.6", "sequelize-typescript": "^0.6.3", - "sqlite3": "^3.1.13", + "sqlite3": "^4.0.0", "tedious": "^2.1.1", + "ts-node": "3.3.0", + "typedoc": "^0.10.0", + "typescript": "2.7.2", "url-join": "^4.0.0", "wait-until": "0.0.2", - "winston": "^2.4.0", - "typescript": "2.7.2", - "chai": "^4.1.2", - "mocha": "^3.5.3", - "@types/azure": "^0.9.19", - "@types/chai": "4.0.4", - "@types/mocha": "2.2.43", - "mocha-typescript": "^1.1.12", - "ts-node": "3.3.0", - "typedoc": "^0.10.0" + "winston": "^2.4.0" } }