forked from virtualzone/landroid-bridge
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.27 KB
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
{
"name": "landroid-bridge",
"version": "0.1.0",
"description": "Publishes readings from the Worx Landroid S Lawn Mower via HTTP (REST, JSON) and MQTT.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=dev mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'",
"grunt": "grunt",
"start": "node dist/server.js",
"dev": "npm run clean && npm run grunt && NODE_ENV=dev node dist/server.js",
"clean": "rm -rf dist/",
"build-prod": "npm run clean && npm run grunt && npm prune --production"
},
"author": "weweave UG <mail@weweave.net>",
"license": "GPL-3.0",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.24",
"@types/sqlite3": "^3.1.3",
"chai": "^4.1.2",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.21",
"grunt-tslint": "^5.0.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"cache": "^2.1.0",
"cron": "^1.3.0",
"express": "^4.16.3",
"iobroker.landroid-s": "^2.5.4",
"log4js": "^3.0.4",
"moment": "^2.22.2",
"mqtt": "^2.18.3",
"sqlite3": "^4.0.2"
}
}