UNPKG

moment-recur-ts

Version:

A momentjs plugin for matching and generating recurring dates.

122 lines (121 loc) 3.05 kB
{ "name": "moment-recur-ts", "version": "1.3.1", "description": "A momentjs plugin for matching and generating recurring dates.", "main": "dist/moment-recur-ts.js", "typings": "dist/moment-recur-ts.d.ts", "files": [ "dist", "src", "docs" ], "repository": { "type": "git", "url": "https://github.com/jefbarn/moment-recur-ts.git" }, "keywords": [ "momentjs", "date", "recur" ], "author": "Jeff Barnes <jeff.barnes@gmail.com>", "license": "MIT", "engines": { "node": ">=6.0.0" }, "peerDependencies": { "moment": "^2.13.0" }, "devDependencies": { "@reactivex/ix-es2015-cjs": "^2.3.4", "@types/chai": "^4.1.0", "@types/clean-webpack-plugin": "^0.1.0", "@types/karma": "^1.7.3", "@types/mocha": "^2.2.46", "@types/moment-timezone": "^0.5.3", "@types/prettier": "^1.9.0", "@types/webpack": "^3.8.2", "chai": "^4.1.2", "clean-webpack-plugin": "^0.1.17", "core-js": "^2.5.3", "coveralls": "^3.0.0", "dts-bundle": "^0.7.3", "jest": "^22.0.6", "karma": "^1.7.1", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.2.0", "karma-edge-launcher": "^0.4.2", "karma-firefox-launcher": "^1.1.0", "karma-ie-launcher": "^1.0.0", "karma-mocha": "^1.3.0", "karma-typescript": "3.0.8", "mocha": "^4.1.0", "mocha-lcov-reporter": "^1.3.0", "mocha-typescript": "^1.1.12", "moment": "^2.20.1", "moment-timezone": "^0.5.14", "nyc": "^11.4.1", "prettier": "^1.10.2", "rimraf": "^2.6.2", "source-map-support": "^0.5.0", "touch": "^3.1.0", "ts-jest": "^22.0.1", "ts-loader": "^3.2.0", "ts-node": "^4.1.0", "tslint": "^5.9.1", "tslint-config-standard": "^7.0.0", "typedoc": "^0.9.0", "typescript": "^2.6.2", "webpack": "^3.10.0" }, "resolutions": { "**/moment": "^2.20.1" }, "scripts": { "up": "yarn upgrade-interactive --latest", "test": "nyc mocha", "coverage": "nyc report --reporter=text-lcov | coveralls", "lint": "tslint -p . src/**/*.ts", "build": "yarn bundle && yarn docs", "bundle": "webpack --config ./config/webpack.config.umd.ts", "docs": "typedoc src && nodetouch docs/.nojekyll", "clean": "rimraf dist .nyc_output", "prepublishOnly": "yarn build", "validate": "npm-run-all --parallel build test lint", "jest": "jest" }, "nyc": { "include": [ "src/**/*.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ] }, "jest": { "transform": { ".ts$": "ts-jest" }, "testMatch": [ "**/test/**/*.spec.ts" ], "moduleFileExtensions": [ "ts", "js", "node" ], "mapCoverage": true, "collectCoverageFrom": [ "src/**/*.ts" ], "testEnvironment": "node", "globals": { "ts-jest": { "skipBabel": true } } } }