-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 884 Bytes
/
package.json
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
38
39
{
"name": "roman2int",
"version": "2.0.2",
"description": "Convert roman numerals to arabic number",
"main": "dist/roman2int.umd.js",
"module": "dist/roman2int.es.js",
"license": "MIT",
"author": "Jesus Rodriguez",
"private": false,
"files": [
"dist/*"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc && vite build && cp ./src/roman2int.ts ./dist"
},
"devDependencies": {
"@types/node": "^17.0.21",
"c8": "^7.11.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vitest": "^0.5.9"
},
"homepage": "github.ireiser.me/roman2int",
"bugs": "github.com/mc-ireiser/roman2int/issues",
"repository": {
"type": "git",
"url": "https://github.com/mc-ireiser/roman2int.git"
},
"keywords": [
"roman",
"arabic",
"int",
"numbers",
"numerals",
"converter"
]
}