botserver/package.json

226 lines
6.2 KiB
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"name": "botserver",
"version": "1.7.6",
"description": "General Bot Community Edition open-core server.",
"main": "./boot.js",
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>",
"João Ferreira <joao.parana@gmail.com>",
"Jorge Ramos <jramos@pobox.com>"
],
2018-11-12 13:53:21 -02:00
"engines": {
"node": "=10.15.2"
2018-11-12 13:53:21 -02:00
},
2018-04-21 02:59:30 -03:00
"license": "AGPL-3.0",
"preferGlobal": true,
"bin": {
"gbot": "./boot.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 -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",
2018-11-11 18:00:37 -02:00
"coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls",
"start": "node ./boot.js",
2018-11-11 18:00:37 -02:00
"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'",
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": {
2019-12-30 14:18:13 -03:00
"@azure/ms-rest-js": "^2.0.4",
"@microsoft/microsoft-graph-client": "^2.0.0",
"@types/validator": "^12.0.1",
"adal-node": "0.2.1",
"async-promises": "0.2.2",
"azure-arm-cognitiveservices": "3.0.0",
"azure-arm-resource": "7.3.0",
"azure-arm-search": "1.3.0-preview",
"azure-arm-sql": "5.7.0",
"azure-arm-website": "5.7.0",
"azure-search-client": "3.1.5",
2019-12-30 14:18:13 -03:00
"bluebird": "^3.7.2",
"body-parser": "1.19.0",
2019-12-30 14:18:13 -03:00
"botbuilder": "^4.7.0",
"botbuilder-ai": "^4.7.0",
"botbuilder-dialogs": "^4.7.0",
"botframework-connector": "^4.7.0",
"botlib": "1.3.2",
2018-10-14 11:38:40 -03:00
"chai": "4.2.0",
"cli-spinner": "0.2.10",
2019-12-30 14:18:13 -03:00
"csv-parse": "^4.8.3",
"dotenv-extended": "^2.7.1",
"exceljs": "^3.5.0",
"express": "4.17.1",
"express-remove-route": "1.0.0",
"js-beautify": "1.10.2",
2019-12-30 14:18:13 -03:00
"marked": "^0.8.0",
"mocha": "6.2.2",
2019-12-30 14:18:13 -03:00
"ms-rest-azure": "^3.0.0",
"nexmo": "^2.5.2",
"ngrok": "^3.2.7",
"npm": "^6.13.4",
"nyc": "^15.0.0",
"opn": "6.0.0",
"pragmatismo-io-framework": "1.0.20",
2019-12-30 14:18:13 -03:00
"public-ip": "^4.0.0",
"reflect-metadata": "0.1.13",
"request-promise": "4.2.5",
"request-promise-native": "1.0.8",
2019-12-30 14:18:13 -03:00
"rimraf": "^3.0.0",
"scanf": "^1.1.1",
"sequelize-typescript": "^1.1.0",
"shx": "0.3.2",
2019-12-30 14:18:13 -03:00
"simple-git": "^1.129.0",
"sppull": "2.5.1",
"strict-password-generator": "1.1.2",
2019-12-30 14:18:13 -03:00
"swagger-client": "^3.9.6",
"tedious": "^6.6.5",
"typedoc": "^0.15.6",
"typescript": "^3.7.4",
"url-join": "4.0.1",
"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-11-11 10:50:58 -02:00
},
"devDependencies": {
2019-12-30 14:18:13 -03:00
"@types/chai": "^4.2.7",
"@types/mocha": "5.2.7",
"@types/url-join": "4.0.0",
2018-11-12 15:43:25 -02:00
"@types/winston": "2.4.4",
2018-11-12 12:40:35 -02:00
"ban-sensitive-files": "1.9.2",
2019-12-30 14:18:13 -03:00
"commitizen": "^4.0.3",
"coveralls": "^3.0.9",
"cz-conventional-changelog": "^3.0.2",
"dependency-check": "^4.1.0",
"git-issues": "1.3.1",
"license-checker": "25.0.1",
"nsp": "3.2.1",
2019-12-31 16:46:33 -03:00
"pre-commit": "^1.2.2",
2019-12-30 14:18:13 -03:00
"prettier-standard": "^16.1.0",
"semantic-release": "^15.14.0",
"travis-deploy-once": "5.0.11",
"tslint": "5.20.1"
},
"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
}
}