-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.18 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
{
"name": "scimmy-routers",
"description": "SCIMMY Express Routers",
"version": "1.2.2",
"author": "sleelin",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16"
},
"main": "./dist/routers.js",
"types": "./dist/routers.d.ts",
"exports": {
"import": "./dist/routers.js",
"require": "./dist/routers.cjs"
},
"scripts": {
"test": "node packager.js -t test",
"clean": "node packager.js -t clean",
"build": "node packager.js -t build",
"prepare": "node packager.js -t prepack"
},
"files": [
"dist/**"
],
"keywords": [
"SCIM",
"provisioning",
"identity",
"rfc7643",
"rfc7644"
],
"homepage": "https://github.com/scimmyjs/scimmy-routers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/scimmyjs/scimmy-routers.git"
},
"bugs": {
"url": "https://github.com/scimmyjs/scimmy-routers/issues"
},
"peerDependencies": {
"express": ">=4.18",
"scimmy": "1.x"
},
"devDependencies": {
"@types/express": "^4.17.17",
"chalk": "^5.3.0",
"express": "^4.21.0",
"minimist": "^1.2.8",
"rollup": "^4.21.3",
"scimmy": "^1.2.3",
"typescript": "^5.6.2"
}
}