{
  "name": "duration-converter",
  "version": "1.3.6",
  "description": "a small utility for converting between duration units. ",
  "main": "dist/duration.js",
  "types": "dist/duration.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "lint": "tslint -c tslint.json src/*.ts --fix --format verbose --project tsconfig.json",
    "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
  },
  "files": [
    "dist/duration.js",
    "dist/duration.d.ts"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gnarr/duration.git"
  },
  "keywords": [
    "duration",
    "period",
    "time",
    "humanize",
    "hours",
    "minutes",
    "seconds",
    "days",
    "years",
    "months",
    "decades",
    "milleniums",
    "milliseconds",
    "nanoseconds",
    "microseconds"
  ],
  "author": "Gunnar Cortes Heimisson",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/gnarr/duration/issues"
  },
  "homepage": "https://github.com/gnarr/duration#readme",
  "devDependencies": {
    "@types/jest": "^24.0.13",
    "@types/node": "^12.0.2",
    "coveralls": "^3.0.3",
    "jest": "^24.8.0",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.1.0",
    "tslint": "^5.16.0",
    "typescript": "^3.4.5"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "coveragePathIgnorePatterns": [
      "<rootDir>/node_modules"
    ],
    "coverageReporters": [
      "json",
      "lcov",
      "text"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "transform": {
      ".ts": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ]
  }
}
