-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "nuimo-mqtt-manager",
"version": "1.0.0",
"description": "Daemon to make Senic Nuimo events available through apps over MQTT",
"main": "build/app/app.js",
"scripts": {
"fix-nuimo-client": "cd node_modules/nuimo-client && npm install",
"install-typings": "cd src && typings install",
"postinstall": "npm run fix-nuimo-client && npm run install-typings",
"prebuild": "rimraf build",
"build": "tsc -p src/ || true",
"test": "mocha build/test --debug-brk --require source-map-support/register || true",
"clean": "rimraf build"
},
"keywords": [
"Senic",
"Nuimo",
"MQTT"
],
"author": "Hans Bakker",
"license": "ISC",
"devDependencies": {
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"typescript": "^1.8.9",
"typings": "^0.7.9",
"assert": "^1.3.0",
"mocha": "^2.4.5",
"tslint": "^3.6.0"
},
"dependencies": {
"@types/node": "^6.0.72",
"automapper-ts": "^1.6.3",
"events": "^1.1.1",
"mqtt": "^1.7.4",
"nuimo-client": "git+https://github.com/brendonparker/nuimo-client.js.git",
"nuimo-client-ts": "https://github.com/wind-rider/nuimo-client.ts/releases/download/v0.4.0/nuimo-client-ts-0.4.0.tgz",
"source-map-support": "^0.4.0"
}
}