-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "@loopback/mqtt",
"version": "1.0.0",
"description": "MQTT extension for LoopBack 4",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "lb-tsc es2017",
"build:watch": "lb-tsc es2017 --watch",
"clean": "lb-clean",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-dist mocha DIST/test",
"posttest": "npm run lint",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback4-extension-mqtt"
},
"author": "",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist"
],
"dependencies": {
"@loopback/context": "^4.0.0-alpha.31",
"@loopback/core": "^4.0.0-alpha.33"
},
"devDependencies": {
"@loopback/build": "^4.0.0-alpha.13",
"@loopback/testlab": "^4.0.0-alpha.23"
}
}