chronobox
Version:
A TypeScript date manipulation library
55 lines (54 loc) • 1.46 kB
JSON
{
"name": "chronobox",
"version": "1.6.0",
"description": "A TypeScript date manipulation library",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"prettier:check": "prettier --check \"./**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"./**/*.{ts,tsx}\"",
"test:type": "tsc --noEmit",
"test:unit": "jest",
"test:coverage": "jest --collectCoverage --",
"test:unit:watch": "jest --watch",
"prepare": "husky"
},
"keywords": [
"date",
"time",
"typescript",
"manipulation"
],
"repository": {
"type": "git",
"url": "https://github.com/imevanc/chronobox.git"
},
"author": "Evan Charalampidis",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}