-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 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
{
"name": "bfmb-comcenter",
"version": "0.5.2",
"description": "Communications central server for BFMB Framework",
"main": "./dist/main.js",
"scripts": {
"start": "node ./dist/main.js",
"test": "./node_modules/.bin/mocha",
"build": "gulp",
"clean": "rm -rf ./dist",
"rebuild": "npm run clean && npm run build",
"gendocs": "typedoc --out ./docs ./src; touch ./docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BFMBFramework/ComCenter.git"
},
"keywords": [
"comcenter",
"sockets",
"jsonrpc"
],
"author": "Ángel González",
"license": "MIT",
"bugs": {
"url": "https://github.com/BFMBFramework/ComCenter/issues"
},
"homepage": "https://github.com/BFMBFramework/ComCenter#readme",
"dependencies": {
"async": "^2.6.2",
"bfmb-base-connector": "^0.3.0",
"bfmb-tado-connector": "^0.4.0",
"bfmb-telegram-connector": "^0.5.0",
"jayson": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.13",
"mongoose-bcrypt": "^1.6.0",
"mongoose-encryption": "^2.0.2",
"uuid": "^3.3.2",
"winston": "^2.4.4"
},
"devDependencies": {
"@types/async": "^2.4.2",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongodb": "^3.1.28",
"@types/mongoose": "^5.5.5",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"mocha": "^6.1.4",
"typescript": "^3.5.1"
}
}