forked from VoxaAI/voxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "voxa",
"version": "2.2.0",
"description": "A fsm (state machine) framework for Alexa apps using Node.js",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- --recursive test",
"test-ci": "JUNIT_REPORT_PATH=junit.xml istanbul cover _mocha -- --recursive --colors --reporter mocha-jenkins-reporter test",
"cobertura": "istanbul report cobertura --root coverage",
"lint": "eslint lib test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediarain/voxa.git"
},
"keywords": [
"alexa",
"skills",
"apps",
"framework",
"echo",
"amazon"
],
"author": "Rain Agency <[email protected]> (http://rain.agency)",
"engines": {
"node": ">=4.3.2"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.1",
"capitalize": "^1.0.0",
"debug": "^2.6.0",
"i18next": "^7.0.0",
"lodash": "^4.13.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "11.1.0",
"eslint-plugin-import": "2.2.0",
"istanbul": "^0.4.5",
"mocha": "3.2.0",
"mocha-jenkins-reporter": "0.3.7",
"portfinder": "^1.0.13",
"simple-mock": "^0.7.3"
},
"bugs": {
"url": "https://github.com/mediarain/voxa/issues"
},
"homepage": "https://github.com/mediarain/voxa#readme"
}