-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "losant-mqtt",
"version": "5.0.0",
"description": "An MQTT client for Losant",
"repository": {
"type": "git",
"url": "https://github.com/Losant/losant-mqtt-js"
},
"main": "index.js",
"author": "Losant <hello@losant.com>",
"license": "MIT",
"scripts": {
"lint": "esw . --ext .js",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"lint:changed": "lint-staged",
"test": "mocha test/unit 2>&1",
"test:watch": "mocha --watch test/unit 2>&1",
"reinstall": "rm -rf node_modules && npm install",
"integration": "mocha test/integration 2>&1",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"engines": {
"node": ">= 12.0"
},
"dependencies": {
"debug": "^4.3.2",
"mqtt": "^4.2.8"
},
"devDependencies": {
"@losant/eslint-config-losant": "^1.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.4.2",
"mocha": "^9.0.3",
"should": "^13.2.3"
},
"bugs": {
"url": "https://github.com/Losant/losant-mqtt-js/issues"
},
"homepage": "https://github.com/Losant/losant-mqtt-js#readme",
"directories": {
"example": "examples",
"test": "test",
"lib": "lib"
},
"keywords": [
"IoT",
"platform",
"MQTT"
],
"mocha": {
"reporter": "spec",
"recursive": true,
"require": "should",
"check-leaks": true
},
"lint-staged": {
"*.js": "esw"
},
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/node"
}
}