-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.23 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"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 <[email protected]> (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
}
}