-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 2.02 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
69
70
{
"name": "ambientweather2mqtt",
"version": "4.8.0",
"description": "Converts Ambient Weather data to MQTT events",
"main": "dist/main.js",
"files": [
"dist/**/*"
],
"type": "module",
"scripts": {
"test": "cross-env DOTENV_CONFIG_PATH=./test/test.env mocha",
"build": "tsc",
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:eslint": "eslint -c .eslintrc.json --ext .ts src/",
"lint:markdown": "node ./node_modules/markdownlint-cli/markdownlint.js **/*.md --ignore node_modules",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"start": "node dist/main.js",
"build:docker": "docker build ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/danecreekphotography/ambientweather2mqtt.git"
},
"keywords": [
"ambient",
"weather",
"MQTT"
],
"author": "Neil Enns",
"license": "MIT",
"bugs": {
"url": "https://github.com/danecreekphotography/ambientweather2mqtt/issues"
},
"homepage": "https://github.com/danecreekphotography/ambientweather2mqtt#readme",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/express": "^4.17.12",
"@types/mocha": "^10.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/ws": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"chai": "^5.0.0",
"cross-env": "^7.0.3",
"env-test": "^1.0.0",
"eslint": "^7.29.0",
"eslint-plugin-deprecation": "^1.2.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^4.3.4"
},
"dependencies": {
"async-mqtt": "^2.6.1",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-notice": "^0.9.10",
"express": "^4.19.2",
"http-terminator": "^3.0.0",
"markdownlint": "^0.26.2",
"markdownlint-cli": "^0.32.1",
"moment": "^2.29.2",
"morgan": "^1.10.0",
"prettier": "^2.3.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
}
}