-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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": "nodesos_mqtt",
"version": "3.0.0",
"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 <[email protected]>",
"main": "./dist/index.js",
"bin": {
"nodesos_mqtt": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "npx tsc",
"watch": "npx tsc --watch",
"format:package": "npx sort-package-json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier src --write",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run prettier"
],
"package.json": "npm run format:package"
},
"dependencies": {
"commander": "^12.1.0",
"figlet": "^1.8.0",
"js-yaml": "^4.1.0",
"mqtt": "^5.10.3",
"nodesos": "^2.0.0",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/figlet": "^1.7.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.16.15",
"@types/sprintf-js": "^1.1.4",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"engines": {
"node": ">=20.0.0"
}
}