-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.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
{
"name": "@mount-skete/julian-calendar",
"type": "module",
"version": "1.0.0",
"description": "The project is a collection of functions to convert dates between Gregorian and Julian calendars. Additionally it includes functions to calculate Orthodox and Catholic Easter dates.",
"author": "mount-skete",
"license": "MIT",
"exports": {
"import": "./src/index.mjs"
},
"scripts": {
"test": "node --test",
"lint": "eslint src/**.mjs test/**.js",
"lint-fix": "eslint src/**.mjs test/**.js --fix"
},
"homepage": "https://github.com/Mount-Skete/julian-calendar-js",
"repository": {
"type": "git",
"url": "[email protected]:Mount-Skete/julian-calendar-js.git"
},
"bugs": {
"url": "https://github.com/Mount-Skete/julian-calendar-js/issues"
},
"keywords": [
"julian",
"julian-calendar",
"easter"
],
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0"
},
"engines": {
"node": ">=18.0.0"
}
}