timezonecomplete
Version:
DateTime, TimeZone, Duration and Period library aimed at providing a consistent and complete date-time interface, away from the original JavaScript Date class.
82 lines (81 loc) • 2.7 kB
JSON
{
"name": "timezonecomplete",
"version": "5.15.1",
"description": "DateTime, TimeZone, Duration and Period library aimed at providing a consistent and complete date-time interface, away from the original JavaScript Date class.",
"keywords": [
"Date",
"time zone",
"timezone",
"period",
"duration",
"timezonejs",
"date arithmetic",
"date math"
],
"homepage": "https://github.com/rogierschouten/timezonecomplete",
"bugs": "https://github.com/rogierschouten/timezonecomplete/issues",
"license": "MIT",
"author": {
"name": "Rogier Schouten",
"email": "github@workingcode.nl"
},
"contributors": [
{
"name": "Bogdan Hoancea",
"email": "bogdanh123@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rogierschouten/timezonecomplete.git"
},
"main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"clean": "rimraf ./dist ./temp ./doc/typedoc ./examples/browser-amd-requirejs/timezonecomplete.js ./examples/browser-stand-alone/timezonecomplete.js",
"lint": "tslint -c ./tslint.json -t stylish ./src/**/*.ts",
"tsc": "tsc",
"copy": "cp ./src/test/*.json ./dist/test",
"doc": "typedoc ./src/lib",
"umd": "node browserify-umd.js",
"minify": "node minify-umd.js",
"build": "npm run tsc && npm run lint && npm run copy && npm run umd && npm run minify",
"watch": "tsc --watch",
"test": "node ./runtests.js",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
"bundle_tests": "node browserify-karma.js",
"exec_karma": "karma start --single-run",
"karma": "npm run bundle_tests && npm run exec_karma",
"all": "npm run clean && npm run build && npm run test && npm run karma && npm run doc"
},
"dependencies": {
"tzdata": "1.0.49"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lolex": "^5.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.4",
"@types/source-map-support": "^0.5.2",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"glob": "^7.1.6",
"istanbul": "^0.4.5",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mkdirp": "^1.0.4",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"tslint": "^6.1.2",
"typedoc": "^0.25.12",
"typescript": "~5.3.2",
"uglify-js": "^3.10.0"
}
}