{ "name": "tinyduration", "version": "3.4.1", "description": "ISO-8601 duration parsing and serialization", "main": "dist/index.js", "types": "dist/index.d.ts", "author": "MelleB ", "keywords": [ "iso-8601", "duration", "period", "date", "time" ], "repository": { "type": "git", "url": "https://github.com/MelleB/tinyduration.git" }, "homepage": "https://github.com/MelleB/tinyduration#readme", "bugs": { "url": "https://github.com/MelleB/tinyduration/issues" }, "license": "MIT", "devDependencies": { "@changesets/cli": "^2.27.11", "@types/jest": "29.5.14", "@types/node": "20.14.2", "@typescript-eslint/eslint-plugin": "7.13.0", "@typescript-eslint/parser": "7.13.0", "eslint": "8.57.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-jest": "28.6.0", "eslint-plugin-prettier": "5.1.3", "fast-check": "2.25.0", "jest": "29.7.0", "prettier": "3.3.2", "rimraf": "5.0.7", "ts-jest": "29.2.5", "typescript": "5.4.5" }, "scripts": { "test": "jest", "build": "tsc", "prepublish": "jest && npm run lint && rimraf dist && tsc", "lint": "eslint . --ext .ts", "prettify": "eslint . --ext .ts --fix", "ci": "jest --coverage && eslint . --ext .ts" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "coverageDirectory": "coverage", "testPathIgnorePatterns": [ "/dist/", "/node_modules/" ] }, "resolutions": { "semver": "7.5.3" } }