fix(tls): allow tls v1.0
Showing
| ... | @@ -17,8 +17,8 @@ | ... | @@ -17,8 +17,8 @@ |
| "homepage": "https://github.com/simllll/node-radius-server", | "homepage": "https://github.com/simllll/node-radius-server", | ||
| "scripts": { | "scripts": { | ||
| "release": "npm run build && standard-version", | "release": "npm run build && standard-version", | ||
| "debug": "DEBUG=radius:* node dist/app.js", | "debug": "DEBUG=radius:* node --tls-min-v1.0 dist/app.js", | ||
| "start": "node dist/app.js", | "start": "node --tls-min-v1.0 dist/app.js", | ||
| "build": "tsc", | "build": "tsc", | ||
| "dev": "ts-node src/app.ts", | "dev": "ts-node src/app.ts", | ||
| "test": "mocha -r ts-node/register __tests__/**/*.test.ts", | "test": "mocha -r ts-node/register __tests__/**/*.test.ts", | ||
| ... | ... |
Please register or sign in to comment