forked from michaelwoods/onstar2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "onstar2mqtt",
"version": "1.20.1",
"description": "OnStarJS wrapper for MQTT",
"main": "src/index.js",
"scripts": {
"coverage": "nyc npm test",
"lint": "npx eslint src test",
"start": "node src/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigThunderSR/onstar2mqtt.git"
},
"keywords": [
"onstar",
"mqtt",
"gm",
"chevrolet",
"homeassistant",
"home-assistant",
"home assistant"
],
"author": "BigThunderSR",
"license": "MIT",
"bugs": {
"url": "https://github.com/BigThunderSR/onstar2mqtt/issues"
},
"homepage": "https://github.com/BigThunderSR/onstar2mqtt#readme",
"dependencies": {
"async-mqtt": "^2.6.3",
"axios": "^1.7.9",
"convert-units": "^2.3.4",
"dotenv": "^16.4.7",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"onstarjs2": "^2.6.1",
"uuid": "^11.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.26.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.13.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0"
}
}