This repository has been archived by the owner on May 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
77 lines (77 loc) · 4.58 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
74
75
76
77
{
"name": "matrix-os",
"version": "0.17.1",
"description": "Portal to device layer for AdMobilize Matrix devices. Includes global component, npm install -g matrix-cli",
"main": "app.js",
"repository": "http://github.com/matrix-io/matrix-os",
"keywords": "matrix,creator,iot,zmq,protobuf,zigbee,zwave,nfc,gyroscope,accellerometer,thread,bluetooth,ir,microphone,robots,smart homes,smart business,security,sensors,maker,firebase",
"homepage": "http://creator.matrix.one",
"bugs": "https://github.com/matrix-io/matrix-os/issues/new",
"scripts": {
"debug": "DEBUG=*,-engine*,-needle*,-*led,-gatt*,-bleno*,-Component*,-bt-characteristic*,-hci* NODE_ENV=dev node index.js",
"debugger": "DEBUG=*,-engine*,-needle,-*led,-gatt,-bleno,-Component,-bt-characteristic,-hci NODE_ENV=dev node --debug index.js",
"debug-test": "DEBUG=*,-engine*,-Component*,-gatt,-bleno,-bt-characteristic,-hci node test/_runner.js",
"debug-watch": "NODE_ENV=dev nodemon index.js -i apps",
"local-debug": "DEBUG=*,-engine*,-Component* NODE_ENV=local node index.js",
"local": "NODE_ENV=local node index.js",
"start": "nodemon --watch lib --watch config",
"test": "node test/_runner.js",
"pr": "open https://bitbucket.org/admobilize/admatrix/pull-request/new",
"deploy-clear": "sudo rm -r db node_modules/matrix-firebase node_modules/matrix-app-config-helper node_modules/matrix-node-sdk node_modules/matrix-eventfilter",
"deploy-copy": "cd node_modules; cp -r ../../matrix-firebase ./matrix-firebase; cp -r ../../matrix-app-config-helper ./matrix-app-config-helper; cp -r ../../matrix-node-sdk ./matrix-node-sdk; cp -r ../../matrix-eventfilter ./matrix-eventfilter; cd ..;",
"deploy-image": "find apps -name '*.matrix' ! -name 'monitor.matrix' -type d -exec rm -r {} +; docker build --no-cache -t matrix/matrix-os .;docker push admobilize/matrix-os",
"local-setup": "cd node_modules; ln -s ../../pi-wifi ./pi-wifi; ln -s ../../matrix-firebase ./matrix-firebase; ln -s ../../matrix-app-config-helper ./matrix-app-config-helper; ln -s ../../matrix-node-sdk ./matrix-node-sdk; ln -s ../../matrix-eventfilter ./matrix-eventfilter; ln -s ../../matrix-protos ./matrix-protos; cd ..",
"sync": "rsync -e ssh --progress -u package.json index.js pi@m:mos/;rsync -ru -e ssh --progress lib proto config apps test pi@m:mos",
"sync-local": "rsync -e ssh --progress -u package.json index.js pi@l:matrix-os/;rsync -ru -e ssh --progress lib proto config apps test pi@l:matrix-os",
"sync-m1": "rsync -e ssh --progress -u package.json index.js pi@m1:matrix-os/;rsync -ru -e ssh --progress lib proto config apps test pi@m1:matrix-os",
"device-diagnostics": "DEBUG=*,-engine*,-gatt,-bleno,-bt-characteristic,-hci START_APP=monitor NODE_ENV=dev node index.js",
"screensaver": "START_APP=life NODE_ENV=dev node index.js",
"clock": "START_APP=clock NODE_ENV=dev node index.js",
"apphost-debug": "docker run -v `pwd`/apps:/apps -it matrix-apphost bash",
"apphost-build": "docker build -t matrix-apphost -f Dockerfile-apphost-arm .",
"upgrade": "npm update matrix-node-sdk matrix-app-config-helper matrix-firebase matrix-eventfilter pi-wifi",
"watch": "nodemon --watch lib --watch config --exec npm run sync",
"watch-apps": "nodemon --watch apps config --exec npm run sync",
"watch-test": "nodemon --watch lib test --exec npm test"
},
"author": "Sean Canton <sean.canton@admobilize.com>",
"contributors": [
"Sean Canton <sean.canton@admobilize.com>"
],
"license": "ISC",
"dependencies": {
"assert-plus": "^1.0.0",
"async": "^1.5.2",
"chai": "^3.5.0",
"colors": "^1.1.2",
"debug": "^2.2.0",
"engine.io-client": "^1.6.8",
"fs-extra": "^0.30.0",
"grpc": "^1.8.4",
"js-yaml": "^3.6.1",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.13.1",
"matrix-app-config-helper": "https://github.com/matrix-io/matrix-app-config-helper/tarball/master",
"matrix-eventfilter": "https://github.com/matrix-io/matrix-eventfilter/tarball/master",
"matrix-firebase": "https://github.com/matrix-io/matrix-firebase/tarball/master",
"matrix-node-sdk": "https://github.com/matrix-io/matrix-node-sdk/tarball/master",
"matrix-protos": "^0.0.17",
"mic": "^2.1.1",
"mocha": "^2.4.5",
"nedb": "https://github.com/matrix-io/nedb/tarball/master",
"network": "^0.3.2",
"optional": "^0.1.4",
"pi-wifi": "^1.1.2",
"protobufjs": "^5.0.1",
"request": "^2.72.0",
"rimraf": "^2.5.2",
"should": "^7.0.2",
"tinycolor2": "^1.3.0",
"tree-kill": "^1.1.0",
"unzip2": "^0.2.5",
"zeromq": "^4.6.0"
},
"engines": {
"node": ">=0.12.7 <=6.5"
}
}