authelia/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2016-12-10 00:47:58 +00:00
{
"name": "authelia",
2019-10-28 20:38:55 +00:00
"version": "3.16.3",
"description": "2FA Single Sign-On server for nginx using LDAP, TOTP and U2F",
"bin": {
"authelia": "./dist/server/src/index.js"
},
"engines": {
"node": ">=8.0.0 <10.0.0"
},
2016-12-10 00:47:58 +00:00
"scripts": {
2019-03-02 21:20:28 +00:00
"start": "./scripts/authelia-scripts suites start",
"build": "./scripts/authelia-scripts build",
2019-02-22 09:27:54 +00:00
"unittest": "./scripts/authelia-scripts unittest",
2019-03-02 21:20:28 +00:00
"test": "./scripts/authelia-scripts suites test",
2019-02-23 22:28:33 +00:00
"travis": "./scripts/authelia-scripts travis",
"cover": "NODE_ENV=test nyc npm t",
"scripts": "./scripts/authelia-scripts",
"hash-password": "./scripts/authelia-scripts hash-password"
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"
},
"dependencies": {},
2016-12-10 00:47:58 +00:00
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/commander": "^2.12.2",
2019-02-22 09:27:54 +00:00
"@types/mocha": "^5.2.6",
2017-05-16 21:17:46 +00:00
"@types/mockdate": "^2.0.0",
2019-02-09 22:20:37 +00:00
"@types/node-fetch": "^2.1.4",
2018-03-23 09:13:00 +00:00
"@types/query-string": "^5.1.0",
"@types/redis": "^2.8.14",
"@types/request": "^2.0.5",
"@types/request-promise": "^4.1.38",
"@types/selenium-webdriver": "^3.0.16",
2018-04-26 21:20:10 +00:00
"@types/speakeasy": "^2.0.2",
"chokidar": "^2.0.4",
"chromedriver": "^77.0.0",
"commander": "^2.19.0",
"ejs": "^2.6.2",
"mocha": "^6.1.4",
"mockdate": "^2.0.1",
2019-02-09 22:20:37 +00:00
"node-fetch": "^2.3.0",
2018-03-23 09:13:00 +00:00
"query-string": "^6.0.0",
"readable-stream": "^2.3.3",
"redis": "^2.8.0",
2018-10-13 09:52:25 +00:00
"request": "^2.88.0",
"request-promise": "^4.2.2",
"selenium-webdriver": "^4.0.0-alpha.4",
"speakeasy": "^2.0.0",
2019-02-13 22:04:57 +00:00
"tree-kill": "^1.2.1",
2018-04-26 21:20:10 +00:00
"ts-node": "^6.0.1",
2017-05-13 16:32:25 +00:00
"tslint": "^5.2.0",
"typescript": "^2.9.2"
2016-12-10 00:47:58 +00:00
}
}