2016-12-10 00:47:58 +00:00
|
|
|
{
|
2017-01-29 00:33:48 +00:00
|
|
|
"name": "authelia",
|
2017-06-01 20:46:47 +00:00
|
|
|
"version": "2.1.9",
|
2017-01-29 00:33:48 +00:00
|
|
|
"description": "2-factor authentication server using LDAP as 1st factor and TOTP or U2F as 2nd factor",
|
2016-12-17 01:06:40 +00:00
|
|
|
"main": "src/index.js",
|
2017-01-29 15:55:23 +00:00
|
|
|
"bin": {
|
|
|
|
"authelia": "src/index.js"
|
|
|
|
},
|
2016-12-10 00:47:58 +00:00
|
|
|
"scripts": {
|
2017-05-16 21:17:46 +00:00
|
|
|
"test": "./node_modules/.bin/mocha --compilers ts:ts-node/register --recursive test/unitary",
|
2017-05-20 17:16:57 +00:00
|
|
|
"test-dbg": "./node_modules/.bin/mocha --debug-brk --compilers ts:ts-node/register --recursive test/unitary",
|
2017-05-14 14:50:57 +00:00
|
|
|
"int-test": "./node_modules/.bin/mocha --recursive test/integration",
|
2017-05-13 16:12:26 +00:00
|
|
|
"coverage": "./node_modules/.bin/istanbul cover _mocha -- -R spec --recursive test",
|
|
|
|
"build-ts": "tsc",
|
|
|
|
"watch-ts": "tsc -w",
|
|
|
|
"tslint": "tslint -c tslint.json -p tsconfig.json",
|
|
|
|
"serve": "node dist/src/index.js"
|
2016-12-10 00:47:58 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-03-16 21:37:30 +00:00
|
|
|
"url": "git+https://github.com/clems4ever/authelia"
|
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": {
|
2017-03-16 21:37:30 +00:00
|
|
|
"url": "https://github.com/clems4ever/authelia/issues"
|
2016-12-10 00:47:58 +00:00
|
|
|
},
|
2017-01-29 00:33:48 +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",
|
2017-01-19 00:01:37 +00:00
|
|
|
"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",
|
2017-01-21 19:24:35 +00:00
|
|
|
"nedb": "^1.8.0",
|
2017-01-22 16:54:45 +00:00
|
|
|
"nodemailer": "^2.7.0",
|
2016-12-10 00:47:58 +00:00
|
|
|
"object-path": "^0.11.3",
|
2017-01-22 16:54:45 +00:00
|
|
|
"randomstring": "^1.1.5",
|
2017-01-21 16:41:06 +00:00
|
|
|
"speakeasy": "^2.0.0",
|
2017-01-22 16:54:45 +00:00
|
|
|
"winston": "^2.3.1",
|
|
|
|
"yamljs": "^0.2.8"
|
2016-12-10 00:47:58 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-05-13 16:12:26 +00:00
|
|
|
"@types/assert": "0.0.31",
|
2017-05-21 10:14:59 +00:00
|
|
|
"@types/bluebird": "^3.5.4",
|
2017-05-16 21:17:46 +00:00
|
|
|
"@types/body-parser": "^1.16.3",
|
2017-05-20 07:49:05 +00:00
|
|
|
"@types/ejs": "^2.3.33",
|
2017-05-13 16:12:26 +00:00
|
|
|
"@types/express": "^4.0.35",
|
|
|
|
"@types/express-session": "0.0.32",
|
|
|
|
"@types/ldapjs": "^1.0.0",
|
|
|
|
"@types/mocha": "^2.2.41",
|
2017-05-16 21:17:46 +00:00
|
|
|
"@types/mockdate": "^2.0.0",
|
2017-05-13 16:12:26 +00:00
|
|
|
"@types/nedb": "^1.8.3",
|
|
|
|
"@types/nodemailer": "^1.3.32",
|
|
|
|
"@types/object-path": "^0.9.28",
|
2017-05-20 07:49:05 +00:00
|
|
|
"@types/proxyquire": "^1.3.27",
|
2017-05-21 20:45:54 +00:00
|
|
|
"@types/randomstring": "^1.1.5",
|
2017-05-16 21:17:46 +00:00
|
|
|
"@types/request": "0.0.43",
|
2017-05-13 16:12:26 +00:00
|
|
|
"@types/sinon": "^2.2.1",
|
2017-05-16 21:17:46 +00:00
|
|
|
"@types/speakeasy": "^2.0.1",
|
|
|
|
"@types/tmp": "0.0.33",
|
2017-05-13 16:12:26 +00:00
|
|
|
"@types/winston": "^2.3.2",
|
|
|
|
"@types/yamljs": "^0.2.30",
|
|
|
|
"grunt": "^1.0.1",
|
|
|
|
"grunt-contrib-copy": "^1.0.0",
|
|
|
|
"grunt-run": "^0.6.0",
|
2016-12-10 00:47:58 +00:00
|
|
|
"mocha": "^3.2.0",
|
2017-01-22 16:54:45 +00:00
|
|
|
"mockdate": "^2.0.1",
|
2017-05-20 07:49:05 +00:00
|
|
|
"proxyquire": "^1.8.0",
|
2016-12-17 01:06:40 +00:00
|
|
|
"request": "^2.79.0",
|
2016-12-10 00:47:58 +00:00
|
|
|
"should": "^11.1.1",
|
|
|
|
"sinon": "^1.17.6",
|
2017-01-21 19:24:35 +00:00
|
|
|
"sinon-promise": "^0.1.3",
|
2017-05-13 16:12:26 +00:00
|
|
|
"tmp": "0.0.31",
|
|
|
|
"ts-node": "^3.0.4",
|
2017-05-13 16:32:25 +00:00
|
|
|
"tslint": "^5.2.0",
|
|
|
|
"typescript": "^2.3.2"
|
2016-12-10 00:47:58 +00:00
|
|
|
}
|
|
|
|
}
|