-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "voxa-ga",
"version": "2.0.3",
"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 <[email protected]> (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"
}
}