This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
forked from microclimates/homie-device
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.81 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": "@chrispyduck/homie-device",
"description": "Homie Device for NodeJS",
"version": "0.1.1-unstable",
"author": {
"name": "Chris Carlson",
"url": "https://github.com/chrispyduck"
},
"main": "dist/index",
"typings": "dist/index",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/chrispyduck/homie-device.git"
},
"engines": {
"node": "~15.5"
},
"keywords": [
"Homie",
"MQTT",
"IoT",
"RaspberryPi",
"Mosquitto",
"HiveMQ",
"WebSphereMQ",
"ActiveMQ",
"RabbitMQ"
],
"devDependencies": {
"@bazel/typescript": "^1.2.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/faker": "^4.1.12",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.34",
"@types/sinon": "^9.0.4",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.15.0",
"faker": "^4.1.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"sinon": "^9.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"watch": "^0.13.0"
},
"dependencies": {
"@types/lodash": "^4.14.154",
"lodash": "^4.17.19",
"mqtt": "^4.2.8",
"winston": "^3.3.3"
},
"scripts": {
"watch": "watch 'npm run test' .",
"clean": "shx rm -rf node_modules/ dist/ docs/ tsconfig.tsbuildinfo",
"build": "npx tsc --build src",
"rebuild": "npm run clean && npm install && npm run build",
"test": "npx nyc --source-map --include 'src/**/*.ts' mocha --exit -r ts-node/register --grep '#Integration' --invert test/**/*.ts",
"coverage": "npx nyc report --reporter=text-lcov | coveralls",
"lint": "npx eslint 'src/**/*.ts' 'test/**/*.ts'"
}
}