@software-hardware-integration-lab/development-utilities 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -0
- package/package.json +20 -0
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('Hello world!')
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@software-hardware-integration-lab/development-utilities",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Converts Microsoft Object IDs to and from SIDs.",
|
|
5
|
+
"homepage": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/Software-Hardware-Integration-Lab/Development-Utilities.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "Elliot Huffman (elliot_huffman@shi.com)",
|
|
15
|
+
"type": "module",
|
|
16
|
+
"main": "index.js",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
19
|
+
}
|
|
20
|
+
}
|