forked from michaelwoods/onstar2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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.4.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/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.2",
"convert-units": "^2.3.4",
"lodash": "^4.17.21",
"onstarjs": "^2.3.8",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.18.2",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}