-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "calendar-date",
"version": "2.7.2",
"description": "Immutable object to represent a calendar date with zero dependencies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf ./dist",
"compile": "tsc -p tsconfig.build.json",
"test": "TZ=UTC jest",
"test:with-different-timezones": "TZ=America/New_York jest && TZ=Europe/Berlin jest && TZ=Asia/Tokyo jest",
"test:coverage": "jest --coverage",
"tsc:check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier **/*.{ts,json} --check",
"format:fix": "prettier **/*.{ts,json} --write",
"prepare": "husky"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"calendar-date": "<rootDir>/src"
}
},
"repository": {
"type": "git",
"url": "https://github.com/gastromatic/calendar-date.git"
},
"keywords": [
"javascript",
"typescript",
"date",
"calendar",
"calendar-date"
],
"author": "Patrick Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/gastromatic/calendar-date/issues"
},
"homepage": "https://github.com/gastromatic/calendar-date#readme",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "9.14.0",
"fast-check": "3.23.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}