-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
82 lines (82 loc) · 2.62 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
{
"name": "romcal",
"version": "3.0.0-dev.92",
"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": "./rites/roman1969/dist/index.d.ts",
"import": "./rites/roman1969/dist/esm/romcal.js",
"require": "./rites/roman1969/dist/cjs/romcal.js"
},
"main": "rites/roman1969/dist/cjs/romcal.js",
"module": "rites/roman1969/dist/esm/romcal.js",
"typings": "rites/roman1969/dist/index.d.ts",
"scripts": {
"build": "npm run build -w=@internal/easter -w=@internal/rite-roman1969",
"clean": "rimraf coverage dist tmp && npm run clean -w=@internal/easter -w=@internal/rite-roman1969",
"data:checks": "npm run data:checks -w=@internal/rite-roman1969",
"doc": "npm run doc -w=@internal/rite-roman1969",
"docs:check-links": "npm run docs:check-links -w=@internal/rite-roman1969",
"docs:sort-glossary": "npm run docs:sort-glossary -w=@internal/rite-roman1969",
"lint": "npm run lint -w=@internal/easter -w=@internal/rite-roman1969",
"lint:fix": "npm run lint -w=@internal/easter -w=@internal/rite-roman1969 -- --fix",
"prepare": "husky",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"test": "npm run test -w=@internal/easter -w=@internal/rite-roman1969",
"test:snapshot:update": "npm run test:snapshot:update -w=@internal/rite-roman1969",
"test:watch": "npm run test:watch -w=@internal/rite-roman1969",
"test:without-coverage": "npm run test:without-coverage -w=@internal/rite-roman1969"
},
"devDependencies": {
"husky": "^9.0.11",
"prettier": "~3.3.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"rites/*",
"packages/*"
]
}