forked from Accenture/alexia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "alexia",
"version": "1.3.1",
"description": "A Framework for creating Amazon Echo (Alexa) skills using Node.js",
"main": "src/alexia.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Accenture/alexia.git"
},
"author": {
"name": "Matthew D. Lancaster",
"email": "[email protected]",
"url": "https://www.accenture.com/us-en"
},
"contributors": [
"Slavomir Kubacka <[email protected]>",
"Michal Morvay <[email protected]",
"Michael Gloger <[email protected]>"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -u exports --reporter spec",
"test-lcov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -u exports --reporter spec",
"test:dev": "nodemon --exec \"mocha || true\""
},
"dependencies": {
"bases": "^0.2.1",
"debug": "^2.2.0",
"glob": "^7.1.1",
"lodash": "^4.13.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.13.0",
"hapi": "^13.5.2",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"request": "^2.74.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5"
},
"engines": {
"node": ">=4.2.0"
},
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"src/"
],
"keywords": [
"alexa",
"alexia",
"echo",
"amazon",
"voice",
"skill",
"intent"
],
"bugs": {
"url": "https://github.com/Accenture/alexia/issues",
"email": "[email protected]"
}
}