forked from FarmBot-Labs/mqtt-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "farmbot-mqtt-gateway",
"version": "1.1.0",
"description": "MQTT gateway for Farmbot",
"main": "app/index.js",
"scripts": {
"start": "nodemon --exec ./node_modules/.bin/ts-node -- ./app/index.ts",
"test": "jest --coverage --no-cache",
"dev": "WEB_API_URL=http://localhost:3000 npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farmbot/mqtt-gateway.git"
},
"author": "Rick Carlino, Farmbot.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/farmbot/mqtt-gateway/issues"
},
"homepage": "https://github.com/farmbot/mqtt-gateway#readme",
"dependencies": {
"@types/axios": "^0.9.34",
"@types/jsonwebtoken": "^7.1.33",
"@types/mqtt": "0.0.32",
"@types/node": "0.0.2",
"axios": "^0.15.2",
"jsonwebtoken": "^7.1.9",
"mosca": "^2.2.0",
"mqtt": "^1.7.4"
},
"devDependencies": {
"@types/jest": "^16.0.1",
"jest": "^17.0.3",
"nodemon": "^1.11.0",
"ts-jest": "^17.0.3",
"ts-node": "^1.7.0",
"typescript": "^2.0.10"
},
"jest": {
"coverageReporters": [
"html"
],
"rootDir": "./",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}