forked from jovotech/jovo-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "jovo-framework",
"version": "1.0.4",
"description": "Jovo is a node.js framework for cross-platform voice app development. We currently support Amazon Alexa Skills and Actions for Google Home.",
"main": "index.js",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"i18next": "^8.4.3",
"i18next-sprintf-postprocessor": "^0.2.2",
"lodash": "^4.17.4",
"uuid": "^3.1.0"
},
"directories": {
"test": "test"
},
"scripts": {
"eslint": "eslint index.js lib/ test/",
"eslint-fix": "eslint --fix index.js lib/ test/",
"test": "mocha test --recursive",
"test-unit": "NODE_ENV=test mocha '/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jovotech/jovo-framework-nodejs.git"
},
"author": "jovotech",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jovotech/jovo-framework-nodejs/issues"
},
"homepage": "https://github.com/jovotech/jovo-framework-nodejs#readme",
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.8.0",
"mocha": "^3.5.0"
}
}