-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "mqtt-state",
"description": "State management for home automation based on MQTT input/output.",
"version": "4.1.0",
"main": "lib/main.js",
"dependencies": {
"consul": "^0.37.0",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"mqtt": "^4.0.0",
"prom-client": "^12.0.0",
"redis": "^3.0.2",
"ulid": "^2.3.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/consul": "^0.23.34",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/js-yaml": "^3.12.3",
"@types/redis": "^2.8.18",
"ava": "^3.12.1",
"esbuild": "^0.18.13",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"nyc": "^15.1.0",
"postject": "^1.0.0-alpha.6",
"prettier": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"coverage": "nyc ava -v",
"docs": "mkdocs serve",
"build": "tsc",
"prepack": "chmod u+x lib/main.js",
"test": "npx ava -v"
},
"bin": {
"mqtt-state": "./lib/main.js"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Den Williams",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/denwilliams/mqtt-state.git"
},
"bugs": {
"url": "https://github.com/denwilliams/mqtt-state/issues"
},
"homepage": "https://github.com/denwilliams/mqtt-state#readme",
"ava": {
"files": [
"**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}