margin-ts 0.7.0 → 0.7.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/README.md +4 -0
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# margin
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/margin-ts)
|
|
4
|
+
[](https://www.npmjs.com/package/margin-ts)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
**Typed health classification for systems that measure things.**
|
|
4
8
|
|
|
5
9
|
TypeScript port of the [Python margin library](https://github.com/sethc5/margin). Zero dependencies.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "margin-ts",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Typed health classification for systems that measure things. Zero dependencies.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,14 @@
|
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/sethc5/margin-ts"
|
|
21
|
+
"url": "git+https://github.com/sethc5/margin-ts.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/sethc5/margin-ts/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/sethc5/margin-ts#readme",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
22
29
|
},
|
|
23
30
|
"files": ["dist", "src"],
|
|
24
31
|
"devDependencies": {
|