forked from mmagr/data-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.32 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.32 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "data-broker",
"description": "Device event broker service for usage with dojot",
"version": "0.0.0",
"homepage": "https://github.com/dojot/data-broker",
"keywords": [
"kafka",
"broker",
"subscription"
],
"author": {
"name": "Giovanni Curiel dos Santos",
"email": "giovannicuriel@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/dojot/data-broker.git"
},
"bugs": {
"url": "https://github.com/dojot/data-broker/issues"
},
"scripts": {
"subscription": "node build/src/subscription-manager.js",
"copy": "[ ! -d build/src/lua ] && mkdir -p build/src/lua ; cp -r src/lua/* build/src/lua",
"build": "tsc && npm run-script copy",
"build-tests": "tsc -p tests/tsconfig.json && npm run-script copy",
"test": "jest --coverage ./tests/*"
},
"dependencies": {
"@dojot/adminkafka": "0.0.1-alpha.9",
"@dojot/dojot-module": "^0.0.1-beta",
"@dojot/dojot-module-logger": "0.0.1-alpha.4",
"@types/async": "^2.0.43",
"@types/body-parser": "^1.16.5",
"@types/express": "^4.0.37",
"@types/jest": "^23.3.2",
"@types/kafka-node": "^2.0.3",
"@types/node": "^8.0.31",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.9",
"async": "^2.5.0",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"eslint": "^4.7.2",
"express": "^4.16.0",
"jest": "^23.6.0",
"jshint": "^2.9.5",
"kafka-node": "^2.2.3",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"socket.io": "^2.0.4",
"tsconfig": "^7.0.0",
"typescript": "~3.0.3",
"uuid": "^3.1.0",
"winston": "~3.0.0"
},
"devDependencies": {
"@types/argparse": "^1.0.33",
"@types/chai": "^4.1.4",
"@types/morgan": "^1.7.35",
"@types/redis": "^2.8.1",
"@types/sinon": "^5.0.2",
"@types/socket.io": "^1.4.31",
"hooks": "^0.3.2",
"ts-jest": "^23.1.4",
"ts-test": "0.0.3",
"typings": "^2.1.1"
},
"jest": {
"roots": [
"./src",
"./tests"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"globals": {
"ts-jest": {
"tsConfig": "./tests/tsconfig.json"
}
}
}
}