-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@konrad-bak/roman-numerals-converter-lib",
"version": "1.0.13",
"description": "Convert numbers into Roman numerals, for the glory of The Great Roman Empire!",
"author": "Konrad Bąk",
"homepage": "https://github.com/konrad-bak/roman-numerals-converter-lib#readme",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/konrad-bak/roman-numerals-converter-lib.git"
},
"bugs": {
"url": "https://github.com/konrad-bak/roman-numerals-converter-lib/issues"
},
"publishConfig": {
"@konrad-bak:registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "vitest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE",
"src/styles.css"
],
"dependencies": {
"eslint": "^8.57.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/ui": "^1.6.0",
"@types/jest": "^28.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jest": "^28.0.0",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"pre-commit": "^1.2.2",
"react-test-renderer": "^18.0.0",
"rollup": "^4.18.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^28.0.0",
"tsx": "^4.15.1",
"typescript": "^4.5.5",
"vitest": "^1.6.0",
"vitest-dom": "^0.1.1"
},
"keywords": [
"roman",
"numerals",
"converter",
"roman empire",
"vinculum",
"apostrophus"
],
"license": "ISC"
}