-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 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
{
"name": "@cesarbr/knot-fog-connector",
"version": "5.1.0",
"description": "KNoT fog connector with a cloud service",
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-fog-connector.git"
},
"main": "./build/index.js",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "babel src --out-dir build",
"start": "node build",
"start:watch": "nodemon --exec babel-node src",
"start:debug": "babel-node debug src",
"test": "jest"
},
"dependencies": {
"@cesarbr/knot-fog-connector-fiware": "^3.0.0",
"@cesarbr/knot-fog-connector-knot-cloud": "^6.0.0",
"amqp-connection-manager": "^3.1.0",
"amqplib": "^0.8.0",
"config": "^2.0.1",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"nodemon": "^1.18.10",
"pre-commit": "^1.2.2",
"winston": "^3.0.0",
"winston-syslog": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"babel-jest": "^26.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5"
},
"pre-commit": [
"lint"
]
}