initial commit
[squeep-roman] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..60d8709
--- /dev/null
@@ -0,0 +1,35 @@
+{
+  "name": "@squeep/roman",
+  "version": "1.0.0",
+  "description": "Render numbers as roman numerals, either unicode or html entities.",
+  "main": "index.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "coverage-check": "nyc check-coverage",
+    "test": "mocha --recursive"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.squeep.com/squeep-roman/"
+  },
+  "engines:": {
+    "node": ">=14"
+  },
+  "keywords": [
+    "roman",
+    "roman numeral",
+    "unicode",
+    "html"
+  ],
+  "author": "Justin Wind <jwind-npm@squeep.com>",
+  "license": "ISC",
+  "pre-commit": [
+    "coverage",
+    "coverage-check"
+  ],
+  "devDependencies": {
+    "mocha": "^10.0.0",
+    "nyc": "^15.1.0",
+    "pre-commit": "^1.2.2"
+  }
+}