authelia/package.json

135 lines
3.3 KiB
JSON
Raw Normal View History

2016-12-10 00:47:58 +00:00
{
"name": "authelia",
2017-09-05 22:17:13 +00:00
"version": "3.3.6",
"description": "2FA Single Sign-On server for nginx using LDAP, TOTP and U2F",
"bin": {
"authelia": "./dist/src/server/index.js"
},
2016-12-10 00:47:58 +00:00
"scripts": {
"test": "./node_modules/.bin/grunt unit-tests",
"cover": "NODE_ENV=test nyc npm t",
"serve": "node dist/server/index.js"
2016-12-10 00:47:58 +00:00
},
"repository": {
"type": "git",
"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": {
"url": "https://github.com/clems4ever/authelia/issues"
2016-12-10 00:47:58 +00:00
},
"apidoc": {
"title": "Authelia API documentation"
},
2016-12-10 00:47:58 +00:00
"dependencies": {
"bluebird": "^3.4.7",
2016-12-10 00:47:58 +00:00
"body-parser": "^1.15.2",
"connect-redis": "^3.3.0",
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",
"mongodb": "^2.2.30",
"nedb": "^1.8.0",
"nodemailer": "^4.0.1",
2016-12-10 00:47:58 +00:00
"object-path": "^0.11.3",
"pug": "^2.0.0-rc.2",
"randomstring": "^1.1.5",
2017-01-21 16:41:06 +00:00
"speakeasy": "^2.0.0",
"u2f": "^0.1.2",
"winston": "^2.3.1",
"yamljs": "^0.2.8"
2016-12-10 00:47:58 +00:00
},
"devDependencies": {
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",
"@types/connect-redis": "0.0.6",
"@types/cors": "^2.8.1",
"@types/cucumber": "^2.0.1",
2017-05-20 07:49:05 +00:00
"@types/ejs": "^2.3.33",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/jquery": "^2.0.45",
"@types/jsdom": "^2.0.30",
"@types/ldapjs": "^1.0.0",
"@types/mocha": "^2.2.41",
2017-05-16 21:17:46 +00:00
"@types/mockdate": "^2.0.0",
"@types/mongodb": "^2.2.7",
"@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",
"@types/query-string": "^4.3.1",
2017-05-21 20:45:54 +00:00
"@types/randomstring": "^1.1.5",
2017-07-13 22:25:11 +00:00
"@types/request": "0.0.46",
"@types/selenium-webdriver": "^3.0.4",
"@types/sinon": "^2.2.1",
2017-05-16 21:17:46 +00:00
"@types/speakeasy": "^2.0.1",
"@types/tmp": "0.0.33",
"@types/winston": "^2.3.2",
"@types/yamljs": "^0.2.30",
"apidoc": "^0.17.6",
"browserify": "^14.3.0",
"chromedriver": "^2.31.0",
"cucumber": "^2.3.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-run": "^0.6.0",
"istanbul": "^0.4.5",
"jquery": "^3.2.1",
"js-logger": "^1.3.0",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"mockdate": "^2.0.1",
"nyc": "^10.3.2",
"power-assert": "^1.4.4",
2017-05-20 07:49:05 +00:00
"proxyquire": "^1.8.0",
"query-string": "^4.3.4",
"request": "^2.81.0",
"selenium-webdriver": "^3.5.0",
2016-12-10 00:47:58 +00:00
"should": "^11.1.1",
"sinon": "^2.3.8",
"sinon-promise": "^0.1.3",
"tmp": "0.0.31",
"ts-node": "^3.3.0",
2017-05-13 16:32:25 +00:00
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"u2f-api": "0.0.9",
"uglify-es": "^3.0.15"
},
"files": [
"dist/src",
"LICENSE"
],
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"doc",
"src/types",
"dist",
"test",
"src/**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
2016-12-10 00:47:58 +00:00
}
}