-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
38
39
40
41
42
43
{
"name": "easter-date.js",
"version": "0.1.6",
"description": "Calculating the date of Easter based on the Gauss algorithm.",
"author": "42proger",
"license": "MIT",
"bugs": {
"url": "https://github.com/42proger/easter-date.js/issues"
},
"homepage": "https://github.com/42proger/easter-date.js#readme",
"keywords": [
"easter",
"date",
"algorithm",
"gauss",
"calendar"
],
"type": "module",
"main": "./lib/easter-date.cjs",
"module": "./lib/easter-date.js",
"types": "./src/types/types.d.ts",
"exports": {
".": {
"require": "./lib/easter-date.cjs",
"import": "./lib/easter-date.js",
"types": "./src/types/types.d.ts"
}
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"rollup": "^4.22.4",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}