5bc337f3a92ef96c805f1c10a22155ba0191c66b
[squeep-roman] / package.json
1 {
2 "name": "@squeep/roman",
3 "version": "1.0.1",
4 "description": "Render numbers as roman numerals, either unicode or html entities.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "coverage-check": "nyc check-coverage",
9 "eslint": "eslint index.js",
10 "test": "mocha --recursive"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://git.squeep.com/squeep-roman/"
15 },
16 "files": [
17 ],
18 "engines:": {
19 "node": ">=14"
20 },
21 "keywords": [
22 "roman",
23 "roman numeral",
24 "unicode",
25 "html"
26 ],
27 "author": "Justin Wind <jwind-npm@squeep.com>",
28 "license": "ISC",
29 "pre-commit": [
30 "coverage",
31 "coverage-check"
32 ],
33 "devDependencies": {
34 "@squeep/eslint-config": "^1",
35 "eslint": "^9",
36 "mocha": "^10",
37 "nyc": "^15",
38 "pre-commit": "^1"
39 }
40 }