-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1014 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@charmingdc/romanify",
"version": "1.0.0",
"description": "Convert numbers to Roman numerals, including large numbers using overlines (supports numbers > 3999)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"type": "module",
"scripts": {
"clean": "rm -rf dist test-build",
"build": "tsc",
"build:test": "tsc --project tsconfig.test.json",
"test": "npm run clean && npm run build && npm run build:test && node test-build/run-all-tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Charmingdc/Romanify.git"
},
"keywords": [
"roman",
"numerals",
"converter",
"typescript",
"roman-numerals",
"number-conversion",
"romanify"
],
"author": "Charming Dc <charmingdc002@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Charmingdc/Romanify/issues"
},
"homepage": "https://myromanify.vercel.app",
"devDependencies": {
"typescript": "^5.9.3"
}
}