You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.6 KiB

{
"name": "@coreid/radius-server",
"description": "CoreID fork of radius server for google LDAP and TTLS",
"version": "1.2.6",
"engines": {
"node": ">13.10.1"
},
"bin": {
"radius-server": "bin/radius-server"
},
"files": [
"bin",
"config.js",
"dist",
"ssl"
],
"homepage": "https://code.garrettmills.dev/starship/node-radius-server",
"scripts": {
"release": "npm run build && standard-version",
"debug": "DEBUG=radius:* node --tls-min-v1.0 dist/app.js",
"start": "node --tls-min-v1.0 dist/app.js",
"build": "tsc",
"dev": "ts-node src/app.ts",
"test": "mocha -r ts-node/register __tests__/**/*.test.ts",
"test-ttls-pap": "__tests__/eapol_test -c __tests__/ttls-pap.conf -s testing123",
"test-radtest": "radtest -x user pwd localhost 1812 testing123",
"create-certificate": "sh ./ssl/create.sh && sh ./ssl/sign.sh"
},
"author": "Simon Tretter <simon.tretter@hokify.com>",
"preferGlobal": true,
"main": "dist/app.js",
"dependencies": {
"@hokify/node-ts-cache": "^5.5.1",
"axios": "^0.21.1",
"debug": "^4.3.1",
"imap-simple": "^5.0.0",
"ldapauth-fork": "^5.0.1",
"ldapjs": "^2.3.0",
"native-duplexpair": "^1.0.0",
"node-cache": "^5.1.2",
"radius": "~1.1.4",
"smtp-client": "^0.4.0",
"yargs": "~17.0.1"
},
"license": "GPLv3",
"devDependencies": {
"@hokify/eslint-config": "^2.0.14",
"@types/chai": "^4.2.18",
"@types/ldapjs": "^1.0.10",
"@types/mocha": "^8.2.2",
"@types/radius": "0.0.28",
"@types/yargs": "^17.0.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"standard-version": "^9.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}