bump package version to 1.0.2
[squeep-roman] / package.json
1 {
2 "name": "@squeep/roman",
3 "version": "1.0.2",
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 "engines:": {
18 "node": ">=14"
19 },
20 "keywords": [
21 "roman",
22 "roman numeral",
23 "unicode",
24 "html"
25 ],
26 "author": "Justin Wind <jwind-npm@squeep.com>",
27 "license": "ISC",
28 "pre-commit": [
29 "coverage",
30 "coverage-check"
31 ],
32 "devDependencies": {
33 "@squeep/eslint-config": "^1",
34 "eslint": "^9",
35 "mocha": "^10",
36 "nyc": "^15",
37 "pre-commit": "^1"
38 }
39 }