-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "test-mqtt-monitoring",
"version": "0.0.1",
"description": "",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "run-s testonly eslint",
"testonly": "jest",
"build": "cheminfo build"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo-js/test-mqtt-monitoring.git"
},
"keywords": [],
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/test-mqtt-monitoring/issues"
},
"homepage": "https://github.com/cheminfo-js/test-mqtt-monitoring#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cheminfo-tools": "^1.23.3",
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"delay": "^4.3.0",
"legoino-util": "2.0.0",
"mqtt": "^3.0.0",
"systeminformation": "^4.14.1"
}
}