-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
62 lines (62 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "radius-server",
"description": "radius server for google LDAP and TTLS",
"version": "2.1.4",
"engines": {
"node": ">13.10.1"
},
"bin": {
"radius-server": "bin/radius-server.js"
},
"files": [
"bin",
"config.js",
"dist",
"ssl"
],
"homepage": "https://github.com/simllll/node-radius-server",
"scripts": {
"release": "npm run build && standard-version",
"debug": "LOGLEVEL=verbose node --tls-min-v1.0 dist/app.js",
"start": "node --tls-min-v1.0 dist/app.js",
"build": "tsc",
"dev": "ts-node --esm 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",
"prepare": "tsc"
},
"author": "Simon Tretter <[email protected]>",
"preferGlobal": true,
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@hokify/node-ts-cache": "^6.0.0",
"imap-simple": "^5.1.0",
"ldapauth-fork": "^5.0.2",
"ldapjs": "^2.3.3",
"native-duplexpair": "^1.0.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.2.6",
"radius": "~1.1.4",
"smtp-client": "^0.4.0",
"yargs": "~17.5.1"
},
"license": "GPL-3.0",
"devDependencies": {
"@hokify/eslint-config": "^2.3.0",
"@types/chai": "^4.3.1",
"@types/ldapjs": "^2.2.2",
"@types/mocha": "^9.1.1",
"@types/radius": "0.0.29",
"@types/yargs": "^17.0.10",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}