feat: add debug pkg to reduce output
Showing
| ... | @@ -3,22 +3,24 @@ | ... | @@ -3,22 +3,24 @@ |
| "description": "radius server for google LDAP and TTLT", | "description": "radius server for google LDAP and TTLT", | ||
| "version": "0.0.1", | "version": "0.0.1", | ||
| "scripts": { | "scripts": { | ||
| "start": "/home/simon/Dev/others/node/node dist/app.js", | "debug": "DEBUG=radius:* ../node/node dist/app.js", | ||
| "start": "../node/node dist/app.js", | |||
| "build": "tsc", | "build": "tsc", | ||
| "dev": "ts-node src/app.ts", | "dev": "ts-node src/app.ts", | ||
| "test-ttls-pap": "eapol_test -c ./ttls-pap.conf -s testing123", | "test-ttls-pap": "eapol_test -c ./ttls-pap.conf -s testing123", | ||
| "create-certificate": "sh ./ssl/create.sh && sh ./ssl/sign.sh" | "create-certificate": "sh ./ssl/create.sh && sh ./ssl/sign.sh" | ||
| }, | }, | ||
| "dependencies": { | "dependencies": { | ||
| "native-duplexpair": "^1.0.0", | "debug": "^4.1.1", | ||
| "ldapjs": "^1.0.2", | "ldapjs": "^1.0.2", | ||
| "md5": "^2.2.1", | |||
| "native-duplexpair": "^1.0.0", | |||
| "node-cache": "^5.1.0", | "node-cache": "^5.1.0", | ||
| "passport-ldapauth": "^2.1.3", | |||
| "radius": "~1.1.4", | "radius": "~1.1.4", | ||
| "ts-node": "^8.6.2", | "ts-node": "^8.6.2", | ||
| "type-cacheable": "^4.0.0", | "type-cacheable": "^4.0.0", | ||
| "yargs": "~15.1.0", | "yargs": "~15.1.0" | ||
| "md5": "^2.2.1", | |||
| "passport-ldapauth": "^2.1.3" | |||
| }, | }, | ||
| "license": "GPLv3", | "license": "GPLv3", | ||
| "devDependencies": { | "devDependencies": { | ||
| ... | ... |
Please register or sign in to comment