UNPKG

voxa-dashbot

Version:

Integrate Dashbot analytics into your Alexa apps using the voxa framework

91 lines (90 loc) 2.29 kB
{ "name": "voxa-dashbot", "version": "2.1.0", "description": "Integrate Dashbot analytics into your Alexa apps using the voxa framework", "main": "lib/index.js", "scripts": { "test": "nyc --reporter=html --reporter=text --report-dir=reports mocha test/ --config test/.mocharc.json", "lint": "tslint --config tslint.json --project tsconfig.json", "clean": "rimraf lib/", "prepare": "npm run clean && tsc", "lint:fix": "tslint --fix --config tslint.json --project tsconfig.json --exclude \"**/*.json\"" }, "repository": { "type": "git", "url": "git+https://github.com/VoxaAI/voxa-dashbot.git" }, "keywords": [ "alexa", "skills", "apps", "framework", "echo", "amazon", "voxa", "analytics", "dashbot" ], "author": "Rain Agency <npm@rain.agency> (http://rain.agency)", "engines": { "node": ">=8.10" }, "license": "MIT", "dependencies": { "@types/lodash": "^4.14.150", "dashbot": "^11.1.0", "lodash": "^4.17.11", "request": "^2.88.2", "request-promise": "^4.2.5" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^7.0.2", "@types/simple-mock": "^0.8.1", "chai": "^4.2.0", "coveralls": "^3.1.0", "husky": "^4.2.5", "mocha": "^7.1.2", "mocha-jenkins-reporter": "^0.4.3", "nock": "^12.0.3", "nyc": "^15.0.1", "prettier": "^2.0.5", "pretty-quick": "^2.0.1", "rimraf": "^3.0.2", "simple-mock": "^0.8.0", "source-map-support": "^0.5.19", "ts-node": "^8.9.1", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "tslint-no-unused-expression-chai": "^0.1.4", "tslint-plugin-prettier": "^2.3.0", "typescript": "^3.8.3", "voxa": "^3.3.2" }, "peerDependencies": { "voxa": "^3.3.0" }, "bugs": { "url": "https://github.com/VoxaAI/voxa-dashbot/issues" }, "homepage": "https://github.com/VoxaAI/voxa-dashbot#readme", "husky": { "hooks": { "pre-commit": "npx pretty-quick --staged && npm run lint && npm test && npx tsc" } }, "nyc": { "extension": [ ".js", ".ts" ] }, "mocha": { "require": "ts-node/register", "exclude": [ "reports/**" ], "extension": "ts,js", "recursive": true } }