forked from romcal/romcal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.64 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "romcal",
"version": "3.0.0-dev.81",
"description": "JavaScript library that generates liturgical calendars of the Roman Rite of the Roman Catholic Church.",
"keywords": [
"roman",
"catholic",
"calendar",
"latin",
"western",
"church",
"christian",
"seasons",
"liturgical"
],
"homepage": "https://github.com/romcal/romcal/blob/master/README.md",
"bugs": {
"url": "https://github.com/romcal/romcal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romcal/romcal.git"
},
"license": "MIT",
"author": {
"name": "Julian Pereira",
"email": "[email protected]",
"url": "https://github.com/pejulian"
},
"contributors": [
{
"name": "Etienne Magnier",
"email": "[email protected]",
"url": "https://github.com/emagnier"
},
{
"name": "Tukusej’s Sirs",
"email": "[email protected]",
"url": "https://github.com/tukusejssirs"
}
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/romcal.js",
"require": "./dist/cjs/romcal.js"
},
"main": "dist/cjs/romcal.js",
"module": "dist/esm/romcal.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "node -r ts-node/register scripts/build.ts",
"clean": "rimraf coverage dist tmp",
"data:checks": "node -r ts-node/register scripts/data-checks.ts",
"doc": "node -r ts-node/register scripts/bundle-doc.ts",
"docs:check-links": "node scripts/docs/check-broken-links.mjs ./docs",
"docs:sort-glossary": "node scripts/docs/sort-glossary.mjs ./docs",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"test": "TZ=UTC jest --coverage",
"test:snapshot:update": "TZ=UTC jest -u",
"test:watch": "TZ=UTC jest --watch",
"test:without-coverage": "TZ=UTC jest"
},
"dependencies": {
"i18next": "^21.6.0",
"ts-deepmerge": "^7.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@jsdevtools/npm-publish": "^3.1.1",
"@jsdevtools/rehype-url-inspector": "^2.0.2",
"@types/cli-progress": "^3.11.5",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.5.12",
"@types/node": "~22.5.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commitlint-plugin-selective-scope": "^1.0.1",
"cross-env": "^7.0.3",
"diff": "^5.2.0",
"dts-bundle-generator": "^9.3.1",
"esbuild": "~0.23.0",
"esbuild-jest": "~0.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.1.3",
"glob": "^11.0.0",
"humanize-duration": "^3.31.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "~3.3.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.1",
"romcal": "file:",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"type-fest": "^4.10.3",
"typescript": "~5.2.2",
"unified": "^11.0.5"
},
"engines": {
"node": ">=18.0.0"
}
}