-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
95 lines (95 loc) · 2.94 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
91
92
93
94
95
{
"name": "voxa",
"version": "3.3.2",
"description": "A fsm (state machine) framework for Alexa, Dialogflow, Facebook Messenger and Botframework apps using Node.js",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"scripts": {
"clean": "rimraf lib/",
"prepare": "yarn run snyk-protect && npm run clean && tsc",
"compile": "tsc",
"lint": "tslint --project tsconfig.json --config tslint.json ",
"report": "nyc report --reporter=json && nyc report --reporter html && nyc report --reporter=lcov && nyc report --reporter=cobertura",
"test": "mocha test/*.spec.* test/**/*.spec.* test/**/**/*.spec.*",
"test-ci": "nyc mocha --colors --reporter mocha-jenkins-reporter test test/*.spec.* test/**/*.spec.* test/**/**/*.spec.*",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"lint:fix": "tslint --fix --config tslint.json --project tsconfig.json --exclude \"**/*.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/VoxaAI/voxa.git"
},
"keywords": [
"alexa",
"skills",
"apps",
"framework",
"echo",
"amazon"
],
"author": "Voxa <[email protected]> (https://voxa.ai)",
"engines": {
"node": ">=8.10"
},
"license": "MIT",
"dependencies": {
"@types/aws-lambda": "^8.10.28",
"@types/bluebird": "^3.5.27",
"@types/i18next": "^12.1.0",
"@types/lambda-log": "^2.2.0",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"@types/request-promise": "^4.1.44",
"@types/tedious": "^4.0.0",
"@types/url-join": "^4.0.0",
"@types/uuid": "^3.4.5",
"actions-on-google": "^2.12.0",
"ask-sdk-model": "^1.25.1",
"azure-functions-ts-essentials": "^1.3.2",
"bluebird": "^3.5.5",
"botbuilder": "^3.16",
"fast-xml-parser": "^3.12.16",
"google-auth-library": "1.6.1",
"googleapis": "^40.0.1",
"i18next": "^17.0.6",
"lambda-log": "^2.3.0",
"lodash": "^4.17.14",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"snyk": "^1.465.0",
"striptags": "^3.1.1",
"url-join": "^4.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/nock": "^10.0.3",
"@types/simple-mock": "^0.8.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"mocha-jenkins-reporter": "^0.4.1",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"portfinder": "^1.0.20",
"rimraf": "^2.6.3",
"simple-mock": "^0.8.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.14.2",
"typescript": "^3.5.3",
"virtual-alexa": "^0.7.2",
"virtual-google-assistant": "^0.3.3"
},
"bugs": {
"url": "https://github.com/VoxaAI/voxa/issues"
},
"homepage": "https://github.com/VoxaAI/voxa#readme",
"snyk": true
}