package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "moment",
  3. "version": "2.30.1",
  4. "description": "Parse, validate, manipulate, and display dates",
  5. "homepage": "https://git.nibgat.space/nibgat-community/moment",
  6. "author": "Iskren Ivov Chernev and nibgat",
  7. "keywords": [
  8. "moment",
  9. "date",
  10. "time",
  11. "parse",
  12. "format",
  13. "validate",
  14. "i18n",
  15. "l10n"
  16. ],
  17. "main": "./moment.js",
  18. "jsnext:main": "./dist/moment.js",
  19. "typings": "./moment.d.ts",
  20. "engines": {
  21. "node": "*"
  22. },
  23. "license": "MIT",
  24. "devDependencies": {
  25. "benchmark": "latest",
  26. "coveralls": "latest",
  27. "cross-env": "^6.0.3",
  28. "es6-promise": "latest",
  29. "eslint": "latest",
  30. "grunt": "latest",
  31. "grunt-benchmark": "latest",
  32. "grunt-cli": "latest",
  33. "grunt-contrib-clean": "latest",
  34. "grunt-contrib-concat": "latest",
  35. "grunt-contrib-copy": "latest",
  36. "grunt-contrib-uglify": "latest",
  37. "grunt-contrib-watch": "latest",
  38. "grunt-env": "latest",
  39. "grunt-exec": "latest",
  40. "grunt-karma": "latest",
  41. "grunt-nuget": "latest",
  42. "grunt-string-replace": "latest",
  43. "karma": "latest",
  44. "karma-chrome-launcher": "latest",
  45. "karma-firefox-launcher": "latest",
  46. "karma-qunit": "latest",
  47. "karma-sauce-launcher": "4.1.4",
  48. "load-grunt-tasks": "latest",
  49. "lodash": ">=4.17.19",
  50. "node-qunit": "latest",
  51. "nyc": "latest",
  52. "prettier": "latest",
  53. "qunit": "^2.10.0",
  54. "rollup": "2.17.1",
  55. "typescript": "^1.8.10",
  56. "typescript3": "npm:typescript@^3.1.6",
  57. "uglify-js": "latest",
  58. "@types/node": "17.0.21"
  59. },
  60. "dojoBuild": "package.js",
  61. "jspm": {
  62. "files": [
  63. "moment.js",
  64. "moment.d.ts",
  65. "locale"
  66. ],
  67. "map": {
  68. "moment": "./moment"
  69. },
  70. "buildConfig": {
  71. "uglify": true
  72. }
  73. },
  74. "scripts": {
  75. "ts3.1-typescript-test": "cross-env node_modules/typescript3/bin/tsc --project ts3.1-typing-tests",
  76. "typescript-test": "cross-env node_modules/typescript/bin/tsc --project typing-tests",
  77. "test": "grunt test",
  78. "eslint": "eslint Gruntfile.js tasks src",
  79. "prettier-check": "prettier --check Gruntfile.js tasks src",
  80. "prettier-fmt": "prettier --write Gruntfile.js tasks src",
  81. "coverage": "nyc npm test && nyc report",
  82. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
  83. },
  84. "spm": {
  85. "main": "moment.js",
  86. "output": [
  87. "locale/*.js"
  88. ]
  89. }
  90. }