ProJSLib/jsbits

View on GitHub
packages/add-months/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@jsbits/add-months",
  "version": "1.1.2",
  "description": "Adds or subtracts N months to any JavaScript Date, local or UTC.",
  "license": "MIT",
  "main": "./index.js",
  "module": "esm/index.js",
  "es2015": "index.mjs",
  "esnext": "index.mjs",
  "browser": "umd/index.js",
  "source": "index.ts",
  "types": "index.d.ts",
  "engines": {
    "node": ">=4.2"
  },
  "author": "aMarCruz",
  "bugs": "https://github.com/ProJSLib/jsbits/issues",
  "homepage": "https://github.com/ProJSLib/jsbits/tree/master/packages/add-months",
  "repository": {
    "type": "git",
    "url": "https://github.com/ProJSLib/jsbits.git"
  },
  "scripts": {
    "lint": "eslint --ext js .",
    "pretest": "tsc",
    "test": "mocha test/index.spec.ts"
  },
  "devDependencies": {
    "@types/expect.js": "^0.3.29",
    "@types/mocha": "^5.2.5",
    "expect.js": "^0.3.1",
    "mocha": "^5.2.0",
    "ts-node": "^7.0.1",
    "typescript": "~3.2.2"
  },
  "keywords": [
    "javascript",
    "typescript",
    "es6",
    "add",
    "date",
    "datetime",
    "months",
    "leap",
    "year"
  ]
}