authelia/package.json

48 lines
1.4 KiB
JSON

{
"name": "two-factor-auth-server",
"version": "1.0.11",
"description": "Simple two factor authentication server with LDAP backend and TOTP",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test/unitary",
"unit-test": "./node_modules/.bin/mocha --recursive test/unitary",
"int-test": "./node_modules/.bin/mocha --recursive test/integration",
"all-test": "./node_modules/.bin/mocha --recursive test",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- -R spec --recursive test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clems4ever/two-factor-auth-server"
},
"author": "Clement Michaud <clement.michaud34@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/clems4ever/two-factor-auth-server/issues"
},
"dependencies": {
"authdog": "^0.1.1",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"ejs": "^2.5.5",
"express": "^4.14.0",
"express-session": "^1.14.2",
"ldapjs": "^1.0.1",
"nedb": "^1.8.0",
"nodemailer": "^2.7.0",
"object-path": "^0.11.3",
"randomstring": "^1.1.5",
"speakeasy": "^2.0.0",
"winston": "^2.3.1",
"yamljs": "^0.2.8"
},
"devDependencies": {
"mocha": "^3.2.0",
"mockdate": "^2.0.1",
"request": "^2.79.0",
"should": "^11.1.1",
"sinon": "^1.17.6",
"sinon-promise": "^0.1.3",
"tmp": "0.0.31"
}
}