-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "iot-device-simulator",
"version": "1.0.9",
"description": "IoT device simulator to generate random data in custom format and publish to MQTT broker",
"main": "lib/src/index.js",
"scripts": {
"test": "nyc mocha --require ts-node/register test/*.ts",
"rebuild": "npm run clean && npm run tsc",
"clean": "rimraf lib tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masonCalmAndCode/iot-device-simulator.git"
},
"keywords": [
"iot",
"mqtt",
"simulator",
"publish",
"subscribe",
"broker",
"data"
],
"author": "Mason Yu",
"license": "MIT",
"bugs": {
"url": "https://github.com/masonCalmAndCode/iot-device-simulator/issues"
},
"homepage": "https://github.com/masonCalmAndCode/iot-device-simulator#readme",
"dependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^7.1.0",
"mqtt": "^4.3.7",
"nyc": "^15.1.0",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha-lcov-reporter": "^1.3.0",
"typescript": "^4.6.4"
}
}