-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "lemonldap-ng-handler",
"license": "GPL-3.0",
"homepage": "https://lemonldap-ng.org",
"maintainers": [
{
"name": "Yadd",
"email": "[email protected]"
}
],
"scripts": {
"clean": "rimraf packages/*/lib ./node_modules/.cache/nx",
"build": "lerna run build",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "lerna run test"
},
"llng-compat": "2.0.11",
"bugs": {
"url": "https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LemonLDAPNG/node-lemonldap-ng-handler.git"
},
"keywords": [
"Lemonldap::NG",
"SSO",
"SAML",
"OpenID-Connect",
"SSOaaS"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"packages/*/lib/*.ts"
],
"testPathIgnorePatterns": [
"<rootDir>.*/node_modules/"
]
},
"authors": [
"Xavier Guimard <[email protected]>"
],
"devDependencies": {
"@nrwl/nx-cloud": "19.0.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/aes-js": "^3.1.1",
"@types/express": "^4.17.13",
"@types/iconv": "^3.0.1",
"@types/ini": "^1.3.31",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/ldapjs": "^2.2.2",
"@types/node": "^17.0.42",
"@types/node-fetch": "^2.6.2",
"@types/node-persist": "^3.1.2",
"@types/random-bytes": "^1.0.1",
"@types/sha.js": "^2.4.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"express": "^4.18.1",
"jest": "^29.6.1",
"jest-mock-server": "^0.1.0",
"ldap-server-mock": "^5.0.0",
"lerna": "^8.1.6",
"normalize-url": "^7.0.3",
"nx": "15.7.2",
"redis-mock": "^0.56.3",
"rimraf": "^3.0.2",
"rollup": "^3.17.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"sqlite3": "^5.1.4",
"supertest": "^6.2.3",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"workspaces": [
"packages/*",
"!packages/node-lemonldap-ng-handler"
],
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}