UNPKG

date-fns-timezone

Version:

Parsing and formatting date strings using IANA time zones for date-fns.

125 lines (124 loc) 3.16 kB
{ "name": "date-fns-timezone", "version": "0.1.4", "description": "Parsing and formatting date strings using IANA time zones for date-fns.", "author": { "name": "Ferdinand Prantl", "email": "prantlf@gmail.com", "url": "http://prantl.tk" }, "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/prantlf/timezone-support/blob/master/LICENSE" } ], "homepage": "https://github.com/prantlf/date-fns-timezone#readme", "repository": { "type": "git", "url": "https://github.com/prantlf/date-fns-timezone.git" }, "bugs": { "url": "https://github.com/prantlf/date-fns-timezone/issues" }, "engines": { "node": ">=6" }, "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "scripts": { "prepare": "npm run build", "lint": "run-s lint:js lint:ts", "lint:js": "standard --verbose", "lint:ts": "tslint -t stylish src/*.ts test/*.ts", "compile": "rollup -c", "copy:typings": "cpy src/*.d.ts dist", "build": "run-s lint compile copy:typings", "compile:tests": "tsc --lib es6 test/typings.test.ts", "check": "jest", "test": "run-s lint compile:tests check", "doc": "jsdoc -c .jsdoc.json", "coverage": "test `node --version | cut -c 2` -eq 8 && cat coverage/lcov.info | coveralls", "benchmark": "node perf", "travis-deploy-once": "travis-deploy-once", "semantic-release": "semantic-release" }, "standard": { "ignore": [ "dist", "docs" ] }, "jest": { "roots": [ "test" ], "collectCoverage": true, "coverageDirectory": "coverage", "collectCoverageFrom": [ "src/*.js" ], "coverageReporters": [ "lcov" ], "coverageThreshold": { "global": { "statements": 100, "branches": 100, "functions": 100, "lines": 100 } } }, "dependencies": { "date-fns": "^1.29.0", "timezone-support": "^1.5.5" }, "devDependencies": { "@babel/core": "^7.1.2", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "benchmark": "^2.1.4", "connect": "^3.6.6", "coveralls": "^3.0.2", "cpy-cli": "^2.0.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "fs-extra": "^7.0.0", "jasmine-core": "^3.2.1", "jest": "^23.6.0", "jsdoc": "^3.5.5", "minami": "^1.2.3", "moment-timezone": "^0.5.21", "npm-run-all": "^4.1.3", "puppeteer": "^1.9.0", "regenerator-runtime": "^0.12.1", "rimraf": "^2.6.2", "rollup": "^0.66.5", "rollup-plugin-babel": "^4.0.3", "rollup-plugin-uglify": "^6.0.0", "semantic-release": "^15.9.17", "serve-static": "^1.13.2", "standard": "^12.0.1", "tiny-glob": "^0.2.2", "travis-deploy-once": "^5.0.9", "tslint": "^5.11.0", "tslint-config-standard": "^8.0.1", "typescript": "^3.1.2" }, "keywords": [ "date-fns", "timezone", "time-zone", "date", "time" ] }