package.json (3556B)
1{ 2 "name": "moment", 3 "version": "2.30.1", 4 "description": "Parse, validate, manipulate, and display dates", 5 "homepage": "https://momentjs.com", 6 "author": "Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev)", 7 "contributors": [ 8 "Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)", 9 "Rocky Meza (http://rockymeza.com)", 10 "Matt Johnson <mj1856@hotmail.com> (http://codeofmatt.com)", 11 "Isaac Cambron <isaac@isaaccambron.com> (http://isaaccambron.com)", 12 "Andre Polykanine <andre@oire.org> (https://github.com/oire)" 13 ], 14 "keywords": [ 15 "moment", 16 "date", 17 "time", 18 "parse", 19 "format", 20 "validate", 21 "i18n", 22 "l10n", 23 "ender" 24 ], 25 "main": "./moment.js", 26 "jsnext:main": "./dist/moment.js", 27 "typings": "./moment.d.ts", 28 "typesVersions": { 29 ">=3.1": { 30 "*": [ 31 "ts3.1-typings/*" 32 ], 33 "min/moment-with-locales": [ 34 "ts3.1-typings/moment.d.ts" 35 ] 36 } 37 }, 38 "engines": { 39 "node": "*" 40 }, 41 "repository": { 42 "type": "git", 43 "url": "https://github.com/moment/moment.git" 44 }, 45 "bugs": { 46 "url": "https://github.com/moment/moment/issues" 47 }, 48 "license": "MIT", 49 "devDependencies": { 50 "benchmark": "latest", 51 "coveralls": "latest", 52 "cross-env": "^6.0.3", 53 "es6-promise": "latest", 54 "eslint": "latest", 55 "grunt": "latest", 56 "grunt-benchmark": "latest", 57 "grunt-cli": "latest", 58 "grunt-contrib-clean": "latest", 59 "grunt-contrib-concat": "latest", 60 "grunt-contrib-copy": "latest", 61 "grunt-contrib-uglify": "latest", 62 "grunt-contrib-watch": "latest", 63 "grunt-env": "latest", 64 "grunt-exec": "latest", 65 "grunt-karma": "latest", 66 "grunt-nuget": "latest", 67 "grunt-string-replace": "latest", 68 "karma": "latest", 69 "karma-chrome-launcher": "latest", 70 "karma-firefox-launcher": "latest", 71 "karma-qunit": "latest", 72 "karma-sauce-launcher": "4.1.4", 73 "load-grunt-tasks": "latest", 74 "lodash": ">=4.17.19", 75 "node-qunit": "latest", 76 "nyc": "latest", 77 "prettier": "latest", 78 "qunit": "^2.10.0", 79 "rollup": "2.17.1", 80 "typescript": "^1.8.10", 81 "typescript3": "npm:typescript@^3.1.6", 82 "uglify-js": "latest", 83 "@types/node": "17.0.21" 84 }, 85 "ender": "./ender.js", 86 "dojoBuild": "package.js", 87 "jspm": { 88 "files": [ 89 "moment.js", 90 "moment.d.ts", 91 "locale" 92 ], 93 "map": { 94 "moment": "./moment" 95 }, 96 "buildConfig": { 97 "uglify": true 98 } 99 }, 100 "scripts": { 101 "ts3.1-typescript-test": "cross-env node_modules/typescript3/bin/tsc --project ts3.1-typing-tests", 102 "typescript-test": "cross-env node_modules/typescript/bin/tsc --project typing-tests", 103 "test": "grunt test", 104 "eslint": "eslint Gruntfile.js tasks src", 105 "prettier-check": "prettier --check Gruntfile.js tasks src", 106 "prettier-fmt": "prettier --write Gruntfile.js tasks src", 107 "coverage": "nyc npm test && nyc report", 108 "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" 109 }, 110 "spm": { 111 "main": "moment.js", 112 "output": [ 113 "locale/*.js" 114 ] 115 } 116}