botserver/package.json

247 lines
6.9 KiB
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"name": "botserver",
chore(release): 1.1.0 [skip ci] # [1.1.0](https://github.com/pragmatismo-io/BotServer/compare/1.0.8...1.1.0) (2018-12-06) ### Bug Fixes * **CI:** default.gbui compilation issues. ([7a11919](https://github.com/pragmatismo-io/BotServer/commit/7a11919)) * **CI:** Migrating CI logic to package.json. ([8ee048f](https://github.com/pragmatismo-io/BotServer/commit/8ee048f)) * **core:** Bot boot logic being fixed. ([1761e06](https://github.com/pragmatismo-io/BotServer/commit/1761e06)) * **core:** Bot Server is runnable again after refactory. ([9379dec](https://github.com/pragmatismo-io/BotServer/commit/9379dec)) * **core:** Loaded dynamically a .js file containing converted VBA dialogs. ([3f32e48](https://github.com/pragmatismo-io/BotServer/commit/3f32e48)) * **core:** Moved logic from app to core. ([c1db8be](https://github.com/pragmatismo-io/BotServer/commit/c1db8be)) * **default.gbui:** Removing warnings. ([02ed085](https://github.com/pragmatismo-io/BotServer/commit/02ed085)) * **gbdialog:** Renamed alpha command to alpha-VBA added documentation files. ([9cd66b8](https://github.com/pragmatismo-io/BotServer/commit/9cd66b8)) * **gbdialog:** Support for multiples hear blocks. ([3bb9d65](https://github.com/pragmatismo-io/BotServer/commit/3bb9d65)) * **gbdialog:** Trying to save context. ([ce04290](https://github.com/pragmatismo-io/BotServer/commit/ce04290)) * **gbdialog:** Updating packages to latest versions and sync *-lock file. ([dcafb7a](https://github.com/pragmatismo-io/BotServer/commit/dcafb7a)) * **gbdialog:** VBA hear must be a wrapper call. ([6915d58](https://github.com/pragmatismo-io/BotServer/commit/6915d58)) * **gbdialog:** VBA is running financial simulations. ([9fb431c](https://github.com/pragmatismo-io/BotServer/commit/9fb431c)) * **gbdialog:** VBA is running. ([2dd359a](https://github.com/pragmatismo-io/BotServer/commit/2dd359a)) * **gbdialog:** VBA loop done - one thing left to automate: Hear wrapper. ([776fe03](https://github.com/pragmatismo-io/BotServer/commit/776fe03)) * **package:** update azure-arm-resource to version 7.2.1 ([4e72507](https://github.com/pragmatismo-io/BotServer/commit/4e72507)) * **package:** update botlib to version 0.1.7 ([8205599](https://github.com/pragmatismo-io/BotServer/commit/8205599)) * **package:** update csv-parse to version 4.0.0 ([3fb5a9a](https://github.com/pragmatismo-io/BotServer/commit/3fb5a9a)) * **package:** update marked to version 0.5.2 ([405fc96](https://github.com/pragmatismo-io/BotServer/commit/405fc96)) * **package:** update pragmatismo-io-framework to version 1.0.19 ([67c2ce7](https://github.com/pragmatismo-io/BotServer/commit/67c2ce7)) * **tests:** Disabling VM tests tentative for now. ([9d5a9c6](https://github.com/pragmatismo-io/BotServer/commit/9d5a9c6)) ### Features * **gbdialog:** The first VBA code is run. ([f0a0cd3](https://github.com/pragmatismo-io/BotServer/commit/f0a0cd3)) * **scripting:** First code changes to VBA implementation. ([09715bc](https://github.com/pragmatismo-io/BotServer/commit/09715bc))
2018-12-06 13:23:34 +00:00
"version": "1.1.0",
"description": "General Bot Community Edition open-core server.",
2018-05-29 05:27:52 -03:00
"main": "./src/app.ts",
2018-11-12 13:53:21 -02:00
"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>"
],
2018-11-12 13:53:21 -02:00
"engines": {
"node": "=10.13.0"
},
2018-04-21 02:59:30 -03:00
"license": "AGPL-3.0",
"preferGlobal": true,
"bin": {
"gbot": "./dist/src/app.js"
},
"repository": {
"type": "git",
2018-05-29 05:27:52 -03:00
"url": "https://github.com/pragmatismo-io/BotServer.git"
},
2018-04-21 02:59:30 -03:00
"scripts": {
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose",
"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",
2018-11-11 18:00:37 -02:00
"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",
2018-11-12 18:51:13 -02:00
"pretslint": "npm run pretty",
"pretty": "prettier-standard 'src/*.ts' 'packages/**/*.ts'",
2018-11-12 14:00:53 -02:00
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"unused-deps": "dependency-check --unused --no-dev ./package.json",
2018-11-12 13:53:21 -02:00
"travis-deploy-once": "travis-deploy-once --pro",
"semantic-release": "semantic-release",
2018-11-12 12:40:35 -02:00
"commit": "git-cz"
2018-04-21 02:59:30 -03:00
},
"dependencies": {
2018-09-27 12:16:48 -03:00
"@microsoft/microsoft-graph-client": "1.3.0",
2018-11-18 17:03:24 -02:00
"@semantic-release/exec": "^3.3.0",
2018-09-27 12:16:48 -03:00
"adal-node": "0.1.28",
"async": "2.6.1",
"async-promises": "0.2.1",
"azure-arm-cognitiveservices": "2.4.0",
"azure-arm-resource": "7.2.1",
"azure-arm-search": "^1.3.0-preview",
"azure-arm-sql": "5.6.0",
"azure-arm-website": "5.7.0",
2018-11-27 22:56:11 -02:00
"bluebird": "^3.5.3",
2018-09-27 12:16:48 -03:00
"body-parser": "1.18.3",
"botbuilder": "^4.1.7",
"botbuilder-ai": "^4.1.7",
"botbuilder-azure": "^4.1.7",
"botbuilder-choices": "^4.0.0-preview1.2",
"botbuilder-dialogs": "^4.1.7",
"botbuilder-prompts": "^4.0.0-preview1.2",
"botlib": "^0.1.8",
2018-10-14 11:38:40 -03:00
"chai": "4.2.0",
"child_process": "^1.0.2",
2018-09-27 12:16:48 -03:00
"chokidar": "2.0.4",
2018-10-24 12:06:47 -03:00
"cli-spinner": "^0.2.8",
"csv-parse": "4.1.0",
2018-09-27 12:16:48 -03:00
"dotenv-extended": "2.3.0",
2018-10-14 11:38:40 -03:00
"express": "4.16.4",
2018-09-27 12:16:48 -03:00
"express-promise-router": "3.0.3",
"fs-extra": "7.0.1",
2018-09-27 12:16:48 -03:00
"fs-walk": "0.0.2",
2018-10-25 18:13:51 -03:00
"ip": "^1.1.5",
2018-09-27 12:16:48 -03:00
"localize": "0.4.7",
"marked": "0.5.2",
2018-10-14 11:38:40 -03:00
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
2018-09-27 12:16:48 -03:00
"ms": "2.1.1",
2018-10-14 11:38:40 -03:00
"ms-rest-azure": "2.5.9",
"nexmo": "2.4.0",
"ngrok": "^3.1.0",
"nyc": "^13.1.0",
2018-11-04 17:26:29 -02:00
"opn": "^5.4.0",
"pragmatismo-io-framework": "1.0.19",
"process-exists": "^3.1.0",
2018-10-25 18:13:51 -03:00
"public-ip": "^2.4.0",
2018-09-27 12:16:48 -03:00
"reflect-metadata": "0.1.12",
"request-promise-native": "1.0.5",
"scanf": "^1.0.2",
"sequelize": "4.41.2",
2018-09-27 12:16:48 -03:00
"sequelize-typescript": "0.6.6",
"shx": "^0.3.2",
"simple-git": "^1.107.0",
"sqlite3": "4.0.4",
"strict-password-generator": "^1.1.1",
"swagger-client": "3.8.22",
"tedious": "3.0.1",
2018-10-14 11:38:40 -03:00
"ts-node": "7.0.1",
"typedoc": "0.13.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typedoc-plugin-markdown": "^1.1.19",
"typescript": "3.2.1",
2018-09-27 12:16:48 -03:00
"url-join": "4.0.0",
"vbscript-to-typescript": "^1.0.8",
2018-09-27 12:16:48 -03:00
"wait-until": "0.0.2",
"walk-promise": "0.2.0",
2018-10-14 11:38:40 -03:00
"winston": "3.1.0"
2018-11-11 10:50:58 -02:00
},
"devDependencies": {
2018-11-12 17:02:11 -02:00
"@semantic-release/changelog": "^3.0.1",
2018-11-12 15:43:25 -02:00
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
2018-11-12 15:43:25 -02:00
"@semantic-release/npm": "^5.1.1",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.5",
"@types/sequelize": "4.27.32",
2018-11-12 15:43:25 -02:00
"@types/url-join": "0.8.2",
"@types/winston": "2.4.4",
2018-11-12 12:40:35 -02:00
"ban-sensitive-files": "1.9.2",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
2018-11-12 12:40:35 -02:00
"cz-conventional-changelog": "^2.1.0",
"dependency-check": "3.2.1",
"deps-ok": "1.4.1",
"git-issues": "1.3.1",
"license-checker": "24.0.1",
"nsp": "3.2.1",
"pre-git": "3.17.1",
"prettier-standard": "8.0.1",
"semantic-release": "^15.12.4",
"standard": "12.0.1",
"travis-deploy-once": "5.0.9",
"ts-loader": "^5.3.1",
2018-11-12 12:40:35 -02:00
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^6.0.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": {
2018-11-17 09:33:39 -02:00
"tagFormat": "${version}",
2018-11-12 17:02:11 -02:00
"debug": true,
2018-11-18 16:26:11 -02:00
"verifyConditions": [
"@semantic-release/github"
2018-11-18 17:03:24 -02:00
],
2018-11-18 18:46:23 -02:00
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog"
],
2018-11-18 17:03:24 -02:00
"prepare": [
2018-11-12 16:01:16 -02:00
"@semantic-release/npm",
2018-11-18 16:26:11 -02:00
{
2018-11-18 17:03:24 -02:00
"path": "@semantic-release/exec",
"cmd": "git status"
},
2018-11-18 18:46:23 -02:00
"@semantic-release/changelog",
2018-11-18 17:03:24 -02:00
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
2018-11-18 17:03:24 -02:00
]
2018-11-18 16:26:11 -02:00
}
2018-11-18 17:03:24 -02:00
],
"publish": [
"@semantic-release/npm",
2018-11-12 16:01:16 -02:00
"@semantic-release/github"
],
"analyzeCommits": "simple-commit-message"
2018-11-18 17:03:24 -02:00
},
"config": {
2018-11-12 12:40:35 -02:00
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"pre-git": {
"commit-msg": "simple",
2018-11-12 13:23:23 -02:00
"pre-commit": [
"npm prune",
"git add packages/*.ts",
"npm run ban"
],
2018-11-12 13:53:21 -02:00
"pre-push": [
"echo skip npm run unused-deps",
2018-11-12 14:00:53 -02:00
"echo skip npm npm run secure",
2018-11-12 17:06:15 -02:00
"echo skip npm run license",
"echo skip npm run ban -- --all",
"echo skip run size"
2018-11-12 13:53:21 -02:00
],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
2018-04-21 02:59:30 -03:00
}
}