-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "pascua",
"version": "0.0.0-semantic-release",
"description": "Calculate Easter date for a given year",
"main": "dist/pascua.js",
"scripts": {
"format": "prettier . --write",
"lint": "eslint src --fix",
"test": "jest --coverage",
"build": "tsc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MauricioRobayo/pascua/issues"
},
"homepage": "https://github.com/MauricioRobayo/pascua#readme",
"author": "Mauricio Robayo <rfmajo@gmail.com> (https://www.mauriciorobayo.com)",
"keywords": [
"easter",
"easter date",
"gregorian calendar",
"holidays"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^27.0.1",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/MauricioRobayo/pascua.git"
},
"release": {
"branches": [
"main"
]
}
}