-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "mqtt-transformer",
"version": "1.0.0",
"description": "A simple service which consumes, transforms and periodically republish json messages on mqtt.",
"repository": {
"type": "git",
"url": "git://github.com/tg44/mqtt-transformer.git"
},
"main": "src/app.ts",
"scripts": {
"test": "npx ts-interface-builder src/types.ts && nyc ./node_modules/.bin/_mocha 'test/**/*.test.ts'",
"build": "npx ts-interface-builder src/types.ts && npx tsc"
},
"keywords": [],
"author": "tg44",
"license": "ISC",
"dependencies": {
"express": "^4.21.1",
"json-e": "~4.4.3",
"mqtt": "^4.3.7",
"mqtt-match": "~2.0.3",
"node-fetch": "^2.6.7",
"ts-interface-checker": "^1.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testdeck/mocha": "^0.3.3",
"@types/express": "^4.17.15",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.3",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-interface-builder": "^0.3.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}