-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nodesos_mqtt",
"version": "3.0.3",
"description": "MQTT client to report state of LifeSOS security system and devices.",
"repository": {
"type": "git",
"url": "https://github.com/bratanon/nodesos_mqtt.git"
},
"license": "MIT",
"author": "Emil Stjerneman <emil@stjerneman.com>",
"main": "./dist/index.js",
"bin": {
"nodesos_mqtt": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist && node scripts/generate-meta.js",
"build": "npx tsc",
"format:package": "npx sort-package-json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"prettier": "prettier src --write",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npx tsc --watch"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run prettier"
],
"package.json": "npm run format:package"
},
"dependencies": {
"commander": "^14.0.3",
"figlet": "^1.11.0",
"js-yaml": "^4.1.1",
"mqtt": "^5.15.1",
"nodesos": "^2.1.1",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/figlet": "^1.7.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.16.15",
"@types/sprintf-js": "^1.1.4",
"eslint": "^10.2.1",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"engines": {
"node": ">=20.0.0"
}
}