
# [1.3.0](https://github.com/pragmatismo-io/BotServer/compare/1.2.2...1.3.0) (2019-05-12) ### Bug Fixes * **core:** ngrok is running on linux ([000bdc1
](https://github.com/pragmatismo-io/BotServer/commit/000bdc1)) * **design:** 404 on bot logo on default.gbtheme: https://github.com/GeneralBots/BotServer/issues/80. ([f67f04a
](https://github.com/pragmatismo-io/BotServer/commit/f67f04a)) * **gbot:** gbot.cmd now installs packages and compiles the server before running. ([dca0325
](https://github.com/pragmatismo-io/BotServer/commit/dca0325)) * **gbot:** gbot.cmd now installs packages and compiles the server before running. ([b7abf5f
](https://github.com/pragmatismo-io/BotServer/commit/b7abf5f)) * **general:** tslint being applied in all sources. ([77ccc3d
](https://github.com/pragmatismo-io/BotServer/commit/77ccc3d)) * **general:** tslint being applied in all sources. ([25d1459
](https://github.com/pragmatismo-io/BotServer/commit/25d1459)) * **general:** tslint being applied in all sources. ([4b49686
](https://github.com/pragmatismo-io/BotServer/commit/4b49686)) * **general:** tslint being applied in all sources. ([895be68
](https://github.com/pragmatismo-io/BotServer/commit/895be68)) * **general:** tslint being applied in all sources. ([c74b3ee
](https://github.com/pragmatismo-io/BotServer/commit/c74b3ee)) * **general:** tslint being applied in all sources. ([ef3c5a1
](https://github.com/pragmatismo-io/BotServer/commit/ef3c5a1)) * **general:** tslint being applied in all sources. ([e9bed77
](https://github.com/pragmatismo-io/BotServer/commit/e9bed77)) * **general:** tslint being applied in all sources. ([d717de6
](https://github.com/pragmatismo-io/BotServer/commit/d717de6)) * **general:** tslint being applied in all sources. ([2c18517
](https://github.com/pragmatismo-io/BotServer/commit/2c18517)) * **general:** tslint being applied in all sources. ([cd5189d
](https://github.com/pragmatismo-io/BotServer/commit/cd5189d)) * **general:** tslint being applied in all sources. ([5d08457
](https://github.com/pragmatismo-io/BotServer/commit/5d08457)) * **general:** tslint being applied in all sources. ([6de285e
](https://github.com/pragmatismo-io/BotServer/commit/6de285e)) * **general:** tslint being applied in all sources. ([69ca62b
](https://github.com/pragmatismo-io/BotServer/commit/69ca62b)) * **general:** tslint being applied in all sources. ([8fec26c
](https://github.com/pragmatismo-io/BotServer/commit/8fec26c)) * **kb.gbapp:** FAQ now showing again. ([c70200a
](https://github.com/pragmatismo-io/BotServer/commit/c70200a)) * **kb.gbapp:** Fix in subjects null pointer. ([e21916f
](https://github.com/pragmatismo-io/BotServer/commit/e21916f)) * **NLP:** Update of platform to mach NLP URL updates and versioning. ([6588049
](https://github.com/pragmatismo-io/BotServer/commit/6588049)) * **VBA:** Several bugs fixed and refactoring on Deployer Service done. ([fecbd3e
](https://github.com/pragmatismo-io/BotServer/commit/fecbd3e)) ### Features * **basic:** General Bots BASIC 2.0 with new keywords and parenthesis only when needed. ([3cc92ec
](https://github.com/pragmatismo-io/BotServer/commit/3cc92ec))
248 lines
7 KiB
JSON
248 lines
7 KiB
JSON
{
|
|
"name": "botserver",
|
|
"version": "1.3.0",
|
|
"description": "General Bot Community Edition open-core server.",
|
|
"main": "./src/app.ts",
|
|
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
|
|
"homepage": "https://github.com/pragmatismo-io/BotServer/#readme",
|
|
"contributors": [
|
|
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
|
|
"Jorge Ramos <jramos@pobox.com>"
|
|
],
|
|
"engines": {
|
|
"node": "=10.13.0"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"preferGlobal": true,
|
|
"bin": {
|
|
"gbot": "./dist/src/app.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pragmatismo-io/BotServer.git"
|
|
},
|
|
"scripts": {
|
|
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
|
|
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose -e ./packages/default.gbui/**/* -e ./packages/**/*.gbdialog/**/*",
|
|
"build": "npm install && npm run build-server && npm run build-gbui && npm run build-docs",
|
|
"build-server": "tsc",
|
|
"build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build",
|
|
"build-docs": "typedoc --options typedoc.json src/",
|
|
"test": "nyc --reporter=html --reporter=text mocha -r ts-node/register packages/**/*.test.ts ",
|
|
"pretest": "npm run build",
|
|
"coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls",
|
|
"start": "node ./dist/src/app.js",
|
|
"watch:build": "tsc --watch",
|
|
"watch:server": "nodemon './dist/index.js' --watch './dist'",
|
|
"posttypedoc": "shx cp .nojekyll docs/reference/.nojekyll",
|
|
"ban": "ban",
|
|
"issues": "git-issues",
|
|
"license": "license-checker --production --onlyunknown --csv",
|
|
"pretty": "prettier-standard 'src/*.ts' 'packages/**/*.ts'",
|
|
"secure": "nsp check",
|
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
|
|
"unused-deps": "dependency-check --unused --no-dev ./package.json",
|
|
"travis-deploy-once": "travis-deploy-once --pro",
|
|
"semantic-release": "semantic-release",
|
|
"commit": "git-cz"
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/microsoft-graph-client": "1.5.2",
|
|
"@semantic-release/exec": "^3.3.2",
|
|
"adal-node": "0.1.28",
|
|
"async": "2.6.2",
|
|
"async-promises": "0.2.1",
|
|
"azure-arm-cognitiveservices": "2.4.1",
|
|
"azure-arm-resource": "7.3.0",
|
|
"azure-arm-search": "^1.3.0-preview",
|
|
"azure-arm-sql": "5.6.0",
|
|
"azure-arm-website": "5.7.0",
|
|
"bluebird": "^3.5.4",
|
|
"body-parser": "1.18.3",
|
|
"botbuilder": "4.3.4",
|
|
"botbuilder-ai": "4.3.4",
|
|
"botbuilder-azure": "4.3.4",
|
|
"botbuilder-choices": "4.0.0-preview1.2",
|
|
"botbuilder-dialogs": "4.3.4",
|
|
"botbuilder-prompts": "4.0.0-preview1.2",
|
|
"botlib": "0.1.24",
|
|
"chai": "4.2.0",
|
|
"child_process": "^1.0.2",
|
|
"chokidar": "2.1.5",
|
|
"cli-spinner": "^0.2.10",
|
|
"csv-parse": "4.3.4",
|
|
"dotenv-extended": "2.4.0",
|
|
"express": "4.16.4",
|
|
"express-promise-router": "3.0.3",
|
|
"fs-extra": "7.0.1",
|
|
"ip": "^1.1.5",
|
|
"js-beautify": "^1.9.1",
|
|
"localize": "0.4.7",
|
|
"marked": "0.6.2",
|
|
"mocha": "6.0.2",
|
|
"mocha-typescript": "1.1.17",
|
|
"ms": "2.1.1",
|
|
"ms-rest-azure": "2.6.0",
|
|
"ms-rest-js": "^1.0.1",
|
|
"nexmo": "2.4.1",
|
|
"ngrok": "3.1.1",
|
|
"nyc": "13.3.0",
|
|
"opn": "6.0.0",
|
|
"pragmatismo-io-framework": "1.0.19",
|
|
"process-exists": "3.1.0",
|
|
"public-ip": "^3.0.0",
|
|
"reflect-metadata": "0.1.13",
|
|
"request-promise": "4.2.4",
|
|
"request-promise-native": "1.0.7",
|
|
"scanf": "^1.0.2",
|
|
"sequelize": "^5.2.12",
|
|
"sequelize-typescript": "0.6.9",
|
|
"shx": "0.3.2",
|
|
"simple-git": "1.110.0",
|
|
"sqlite3": "4.0.6",
|
|
"strict-password-generator": "^1.1.2",
|
|
"swagger-client": "3.8.25",
|
|
"tedious": "6.1.0",
|
|
"temperature-js": "^0.1.0",
|
|
"ts-node": "8.0.3",
|
|
"typedoc": "0.14.2",
|
|
"typedoc-plugin-external-module-name": "^2.0.0",
|
|
"typedoc-plugin-markdown": "^1.1.27",
|
|
"typescript": "3.4.1",
|
|
"url-join": "4.0.0",
|
|
"vbscript-to-typescript": "^1.0.8",
|
|
"wait-until": "0.0.2",
|
|
"walk-promise": "0.2.0",
|
|
"winston": "3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^3.0.2",
|
|
"@semantic-release/commit-analyzer": "^6.1.0",
|
|
"@semantic-release/git": "^7.0.8",
|
|
"@semantic-release/github": "^5.2.10",
|
|
"@semantic-release/npm": "^5.1.4",
|
|
"@semantic-release/release-notes-generator": "^7.1.4",
|
|
"@types/chai": "4.1.7",
|
|
"@types/mocha": "5.2.6",
|
|
"@types/sequelize": "4.27.46",
|
|
"@types/url-join": "4.0.0",
|
|
"@types/winston": "2.4.4",
|
|
"ban-sensitive-files": "1.9.2",
|
|
"commitizen": "^3.0.7",
|
|
"coveralls": "^3.0.3",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"dependency-check": "3.3.0",
|
|
"deps-ok": "1.4.1",
|
|
"git-issues": "1.3.1",
|
|
"license-checker": "25.0.1",
|
|
"nsp": "3.2.1",
|
|
"pre-git": "3.17.1",
|
|
"prettier-standard": "9.1.1",
|
|
"semantic-release": "^15.13.3",
|
|
"standard": "12.0.1",
|
|
"travis-deploy-once": "5.0.11",
|
|
"ts-loader": "^5.3.3",
|
|
"tslint": "^5.15.0",
|
|
"tslint-microsoft-contrib": "^6.1.0"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"mocha": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"rules": {
|
|
"indent": "off",
|
|
"linebreak-style": [
|
|
"warn",
|
|
"unix"
|
|
],
|
|
"no-unused-vars": [
|
|
"warn"
|
|
],
|
|
"no-undef": [
|
|
"warn"
|
|
],
|
|
"no-console": [
|
|
"warn"
|
|
],
|
|
"no-case-declarations": [
|
|
"warn"
|
|
],
|
|
"no-extra-semi": [
|
|
"warn"
|
|
],
|
|
"no-unreachable": [
|
|
"warn"
|
|
],
|
|
"no-redeclare": [
|
|
"warn"
|
|
],
|
|
"no-useless-escape": [
|
|
"warn"
|
|
],
|
|
"no-constant-condition": [
|
|
"warn"
|
|
]
|
|
}
|
|
},
|
|
"release": {
|
|
"tagFormat": "${version}",
|
|
"debug": true,
|
|
"verifyConditions": [
|
|
"@semantic-release/github"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/npm",
|
|
{
|
|
"path": "@semantic-release/exec",
|
|
"cmd": "git status"
|
|
},
|
|
"@semantic-release/changelog",
|
|
{
|
|
"path": "@semantic-release/git",
|
|
"assets": [
|
|
"package.json",
|
|
"CHANGELOG.md"
|
|
]
|
|
}
|
|
],
|
|
"publish": [
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github"
|
|
],
|
|
"analyzeCommits": "simple-commit-message"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
},
|
|
"pre-git": {
|
|
"commit-msg": "simple",
|
|
"pre-commit": [
|
|
"npm prune",
|
|
"git add packages/*.ts",
|
|
"npm run ban"
|
|
],
|
|
"pre-push": [
|
|
"echo skip npm run unused-deps",
|
|
"echo skip npm npm run secure",
|
|
"echo skip npm run license",
|
|
"echo skip npm run ban -- --all",
|
|
"echo skip run size"
|
|
],
|
|
"post-commit": [],
|
|
"post-checkout": [],
|
|
"post-merge": []
|
|
}
|
|
}
|
|
}
|