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.

60 lines
1.5 KiB

{
"name": "radius-server",
"description": "radius server for google LDAP and TTLS",
"version": "1.1.2",
"engines": {
"node": ">13.10.1"
},
"bin": {
"radius-server": "./bin/radius-server"
},
"files": [
"bin",
"config.js",
"dist",
"ssl"
],
"homepage": "https://github.com/simllll/node-radius-server",
"scripts": {
"release": "npm run build && standard-version",
"debug": "DEBUG=radius:* node dist/app.js",
"start": "node 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.1.4",
"debug": "^4.1.1",
"imap-simple": "^5.0.0",
"ldapauth-fork": "^4.3.3",
"ldapjs": "^1.0.2",
"native-duplexpair": "^1.0.0",
"node-cache": "^5.1.0",
"radius": "~1.1.4",
"smtp-client": "^0.3.1",
"yargs": "~15.3.1"
},
"license": "GPLv3",
"devDependencies": {
"ts-node": "^8.10.1",
"standard-version": "^8.0.0",
"@hokify/eslint-config": "^0.4.11",
"@types/chai": "^4.2.11",
"@types/ldapjs": "^1.0.7",
"@types/mocha": "^7.0.2",
"@types/radius": "0.0.28",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"typescript": "^3.9.2"
}
}