-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 846 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
{
"name": "romans",
"version": "3.0.0",
"description": "A small, no-dependency lib for converting to and from roman numerals",
"main": "romans.js",
"types": "romans.d.ts",
"repository": "[email protected]:qbunt/romans.git",
"keywords": [
"roman",
"translation",
"numerals"
],
"scripts": {
"test": "jest",
"ci": "jest --coverage",
"test-with-coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"author": "qbunt",
"license": "MIT",
"bugs": {
"url": "https://github.com/qbunt/romanize/issues"
},
"homepage": "https://github.com/qbunt/romanize#readme",
"devDependencies": {
"eslint": "^9.17.0",
"fast-check": "^3.23.2",
"jest": "^29.7.0",
"prettier": "^3.4.2"
}
}