voxa-ga
Version:
Integrate Google Universal Analytics into your Alexa apps using the voxa framework
65 lines (64 loc) • 1.59 kB
JSON
{
"name": "voxa-ga",
"version": "2.1.0-alpha4",
"description": "Integrate Google Universal Analytics into your Alexa apps using the voxa framework",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text --report-dir=reports mocha tests/",
"coverage": "nyc report --reporter=text-lcov > ./reports/lcov.info",
"lint": "eslint lib tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediarain/voxa-ga.git"
},
"keywords": [
"alexa",
"skills",
"apps",
"framework",
"echo",
"amazon",
"voxa",
"google analytics",
"ga"
],
"author": "Rain Agency <npm@rain.agency> (http://rain.agency)",
"engines": {
"node": ">=8.10"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.4",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"universal-analytics": "^0.4.20"
},
"devDependencies": {
"aws-sdk": "^2.610.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"simple-mock": "^0.8.0",
"voxa": "^3.3.1"
},
"bugs": {
"url": "https://github.com/mediarain/voxa-ga/issues"
},
"homepage": "https://github.com/mediarain/voxa-ga#readme",
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged && npm run lint && npm run test"
}
},
"peerDependencies": {
"voxa": "^3.3.1"
}
}