-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
{
"name": "alexia",
"version": "2.4.0",
"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\"",
"toc": "doctoc README.md --github"
},
"dependencies": {
"debug": "^2.3.0",
"doctoc": "^1.2.0",
"glob": "^7.1.1",
"lodash": "^4.16.6",
"rimraf": "^2.5.4",
"stack-trace": "0.0.9"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-standard": "^2.0.1",
"hapi": "^15.2.0",
"i18next": "^4.1.0",
"i18next-node-fs-backend": "^0.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"request": "^2.78.0",
"sinon": "^1.17.6"
},
"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]"
}
}