-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 KB
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
{
"name": "@shi-corp/objectid-converter",
"version": "2.0.10",
"description": "Converts Microsoft Object IDs to and from SIDs.",
"main": "bin/index.js",
"type": "module",
"scripts": {
"start": "node ./bin/index.js",
"build:Dev": "tsc",
"prebuild:Prod": "tsc -p prod.tsconfig.json --emitDeclarationOnly false",
"build:Prod": "tsc -p prod.tsconfig.json --removeComments false",
"test:Unit": "mocha",
"lint": "eslint --max-warnings 0"
},
"keywords": [
"Object ID",
"Azure",
"Entra",
"Entra ID",
"Windows",
"Cloud",
"UUID",
"Converter",
"Library",
"Easy",
"Minimal",
"Security Identifier",
"SID",
"GUID"
],
"packageManager": "npm@11.9.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.17.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Software-Hardware-Integration-Lab/ObjectID-Converter.git",
"directory": "/"
},
"bugs": {
"url": "https://github.com/Software-Hardware-Integration-Lab/ObjectID-Converter/issues"
},
"author": "Elliot Huffman <elliot_huffman@shi.com>",
"license": "MIT",
"dependencies": {
"uuid": "~13.0.0"
},
"devDependencies": {
"@shi-corp/development-utilities": "~2.2.0",
"@types/chai": "~5.2.3",
"@types/mocha": "~10.0.10",
"@types/node": "~25.2.2",
"chai": "~6.2.2",
"mocha": "~11.7.5",
"typescript": "~5.9.3"
},
"mocha": {
"recursive": true,
"spec": "bin/test/",
"color": true
}
}