-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "smart-mirror",
"version": "0.0.11",
"description": "The fairest of them all",
"main": "main.js",
"scripts": {
"install": "bower install",
"start": "electron main.js ",
"microphone-debug": "electron scripts/microphone-debug/main.js",
"train-model": "electron scripts/train-model.js",
"sonus": "node sonus.js",
"motion": "sudo node motion.js",
"enable-motion": "npm install johnny-five raspi-io",
"update": "git pull && npm install",
"wiredep": "wiredep -s index.html",
"test": "eslint . --ignore-path .gitignore",
"test-fix": "eslint . --ignore-path .gitignore --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evancohen/smart-mirror.git"
},
"keywords": [
"Smart Mirror",
"IoT",
"Voice Control",
"DIY"
],
"author": "Evan Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/evancohen/smart-mirror/issues"
},
"homepage": "https://github.com/evancohen/smart-mirror",
"devDependencies": {
"angular-i18n": "^1.5.5",
"bower": "^1.7.9",
"electron": "^1.4.4",
"eslint": "^3.13.1",
"wiredep-cli": "^0.1.0"
},
"dependencies": {
"angular-moment": "^1.0.1",
"annyang": "^2.6.0",
"electron-json-storage": "2.0.0",
"express": "^4.14.0",
"fitbit-oauth2": "0.0.1",
"hyperion-client": "1.0.3",
"moment": "^2.17.1",
"socket.io": "^1.6.0",
"sonus": "^0.1.7"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
"indent": [2, "tab"],
"no-console": 0
},
"globals": {
"angular": false,
"annyang": false,
"moment": false,
"config": false,
"RRule": false
}
}
}