12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "moment-timezone",
- "version": "0.5.39",
- "description": "Parse and display moments in any timezone.",
- "homepage": "http://momentjs.com/timezone/",
- "author": "Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)",
- "keywords": [
- "moment",
- "date",
- "time",
- "timezone",
- "olson",
- "iana",
- "zone",
- "tz"
- ],
- "main": "./index.js",
- "typings": "./index.d.ts",
- "engines": {
- "node": "*"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/moment/moment-timezone.git"
- },
- "bugs": {
- "url": "https://github.com/moment/moment-timezone/issues"
- },
- "license": "MIT",
- "dependencies": {
- "moment": ">= 2.9.0"
- },
- "devDependencies": {
- "grunt": "^1.5.3",
- "grunt-contrib-clean": "^2.0.0",
- "grunt-contrib-jshint": "^2.1.0",
- "grunt-contrib-nodeunit": "^2.0.0",
- "grunt-contrib-uglify": "^4.0.1",
- "grunt-exec": "^3.0.0",
- "typescript": "^3.5.1"
- },
- "jspm": {
- "main": "builds/moment-timezone-with-data",
- "shim": {
- "moment-timezone": {
- "deps": [
- "moment"
- ]
- }
- }
- },
- "scripts": {
- "test": "grunt"
- }
- }
|