localized-dst
Version:
Determine if a date is in daylight savings time by country/state/city
47 lines (46 loc) • 1.12 kB
JSON
{
"name": "localized-dst",
"version": "1.1.2",
"description": "Determine if a date is in daylight savings time by country/state/city",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"publish-lib": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta",
"publish-dryrun": "npm run build && npm publish --dry-run",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [
"dst",
"daylight",
"savings",
"time",
"country",
"city",
"date"
],
"author": "Remi THOMAS",
"contributors": [
"Adrian EDWARDS"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3"
},
"dependencies": {
"date-fns": "^2.29.3",
"moment-timezone": "^0.5.37",
"typescript": "^4.8.4"
}
}