authelia/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2016-12-10 00:47:58 +00:00
{
"name": "authelia",
2017-03-16 00:32:56 +00:00
"version": "2.0.3",
"description": "2-factor authentication server using LDAP as 1st factor and TOTP or U2F as 2nd factor",
"main": "src/index.js",
"bin": {
"authelia": "src/index.js"
},
2016-12-10 00:47:58 +00:00
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test/unitary",
2017-01-21 16:41:06 +00:00
"unit-test": "./node_modules/.bin/mocha --recursive test/unitary",
"all-test": "./node_modules/.bin/mocha --recursive test",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- -R spec --recursive test"
2016-12-10 00:47:58 +00:00
},
"repository": {
"type": "git",
2016-12-18 02:05:13 +00:00
"url": "git+https://github.com/clems4ever/two-factor-auth-server"
2016-12-10 00:47:58 +00:00
},
2016-12-18 02:05:13 +00:00
"author": "Clement Michaud <clement.michaud34@gmail.com>",
"license": "MIT",
2016-12-10 00:47:58 +00:00
"bugs": {
2016-12-18 02:05:13 +00:00
"url": "https://github.com/clems4ever/two-factor-auth-server/issues"
2016-12-10 00:47:58 +00:00
},
"apidoc": {
"title": "Authelia API documentation"
},
2016-12-10 00:47:58 +00:00
"dependencies": {
2017-01-21 16:41:06 +00:00
"authdog": "^0.1.1",
"bluebird": "^3.4.7",
2016-12-10 00:47:58 +00:00
"body-parser": "^1.15.2",
2017-01-27 00:20:03 +00:00
"dovehash": "0.0.5",
2016-12-10 00:47:58 +00:00
"ejs": "^2.5.5",
"express": "^4.14.0",
2017-01-21 16:41:06 +00:00
"express-session": "^1.14.2",
2016-12-10 00:47:58 +00:00
"ldapjs": "^1.0.1",
"nedb": "^1.8.0",
"nodemailer": "^2.7.0",
2016-12-10 00:47:58 +00:00
"object-path": "^0.11.3",
2017-01-28 17:27:54 +00:00
"qrcode": "^0.5.0",
"randomstring": "^1.1.5",
2017-01-21 16:41:06 +00:00
"speakeasy": "^2.0.0",
"winston": "^2.3.1",
"yamljs": "^0.2.8"
2016-12-10 00:47:58 +00:00
},
"devDependencies": {
"mocha": "^3.2.0",
"mockdate": "^2.0.1",
"request": "^2.79.0",
2016-12-10 00:47:58 +00:00
"should": "^11.1.1",
"sinon": "^1.17.6",
"sinon-promise": "^0.1.3",
"tmp": "0.0.31"
2016-12-10 00:47:58 +00:00
}
}