authelia/package.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2016-12-10 00:47:58 +00:00
{
2016-12-18 02:05:13 +00:00
"name": "two-factor-auth-server",
2017-01-12 22:28:23 +00:00
"version": "1.0.11",
2016-12-18 12:42:17 +00:00
"description": "Simple two factor authentication server with LDAP backend and TOTP",
"main": "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",
"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"
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
},
"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",
"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",
"object-path": "^0.11.3",
2017-01-21 16:41:06 +00:00
"speakeasy": "^2.0.0",
"winston": "^2.3.1"
2016-12-10 00:47:58 +00:00
},
"devDependencies": {
"mocha": "^3.2.0",
"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"
}
}