1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-12 19:29:30 +08:00
Mainflux.mainflux/package.json
Drasko DRASKOVIC e7e4da29bb Add jwt
Devices routes are now JWT protected. We are using `restify-jwt`
which is using `jsonwebtoken` behind.

Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
2015-12-04 00:54:39 +01:00

34 lines
791 B
JSON

{
"name": "node-api",
"description": "Mainflux is an open source MIT licensed IoT cloud written in NodeJS",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/Mainflux/mainflux"
},
"license": "Apache-2.0",
"scripts": {
"test": "node_modules/.bin/mocha"
},
"dependencies": {
"bcrypt": "~0.8.5",
"body-parser": "~1.0.1",
"jsonwebtoken": "~5.0.5",
"lodash": "~3.10.1",
"mongojs": "^1.4.1",
"restify": "^4.0.3"
},
"devDependencies": {
"chai": "^3.4.0",
"gulp": "^3.9.0",
"gulp-exit": "0.0.2",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-nodemon": "^2.0.3",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3",
"restify-jwt": "^0.4.0",
"supertest": "^1.1.0"
}
}