-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "onstar2mqtt",
"version": "1.5.12",
"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/michaelwoods/onstar2mqtt.git"
},
"keywords": [
"onstar",
"mqtt",
"gm",
"chevrolet",
"homeassistant",
"home-assistant",
"home assistant"
],
"author": "Michael Woods",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelwoods/onstar2mqtt/issues"
},
"homepage": "https://github.com/michaelwoods/onstar2mqtt#readme",
"dependencies": {
"async-mqtt": "^2.6.3",
"convert-units": "^2.3.4",
"lodash": "^4.17.21",
"onstarjs": "^2.5.3",
"uuid": "^10.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.25.1",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.25.4",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.7.3",
"nyc": "^17.0.0"
}
}