-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 1.46 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
{
"name": "scimmy",
"description": "SCIMMY - SCIM m(ade eas)y",
"version": "1.2.4",
"author": "sleelin",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16"
},
"main": "./dist/scimmy.js",
"types": "./dist/scimmy.d.ts",
"exports": {
"import": "./dist/scimmy.js",
"require": "./dist/cjs/scimmy.cjs"
},
"scripts": {
"test": "node packager.js -t test",
"test:ci": "node packager.js -t test:ci",
"clean": "node packager.js -t clean",
"build": "node packager.js -t build",
"prepare": "node packager.js -t prepack",
"document": "./node_modules/.bin/jsdoc -c ./jsdoc.json"
},
"files": [
"dist/**"
],
"keywords": [
"SCIM",
"provisioning",
"identity",
"rfc7643",
"rfc7644"
],
"homepage": "https://scimmyjs.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/scimmyjs/scimmy.git"
},
"imports": {
"#@/*": {
"default": "./src/*"
}
},
"c8": {
"all": true,
"check-coverage": true,
"include": [
"src/**/*.js"
],
"reporter": [
"clover",
"lcov"
]
},
"bugs": {
"url": "https://github.com/scimmyjs/scimmy/issues"
},
"devDependencies": {
"@types/node": "ts5.4",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"classy-template": "^1.4.0",
"jsdoc": "^4.0.2",
"minimist": "^1.2.8",
"mocha": "^10.4.0",
"rollup": "^4.17.2",
"sinon": "^19.0.2",
"typescript": "^5.4.5"
}
}