-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 980 Bytes
/
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
{
"name": "alexa-home-controller",
"version": "1.0.0",
"description": "Active voice monitoring tool but written in node",
"main": "server.js",
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/WarlaxZ/alexa-home-controller"
},
"keywords": [
"snowboy",
"alexa",
"echo",
"amazon echo",
"voice"
],
"author": "WarlaxZ",
"license": "ISC",
"dependencies": {
"alexa-app": "^2.3.4",
"alexa-app-server": "^2.2.4",
"grunt-cli": "^1.2.0"
},
"jshintConfig": {
"esversion": 6,
"ignore": [
{
"dir": "./node_modules"
},
{
"dir": "./apps/*/node_modules"
}
]
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-npm-install-all": "^0.1.0",
"jshint": "^2.9.3",
"mocha": "^3.0.2"
}
}