package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "jquery",
  3. "title": "jQuery",
  4. "description": "JavaScript library for DOM operations",
  5. "version": "3.7.1",
  6. "main": "dist/jquery.js",
  7. "homepage": "https://jquery.com",
  8. "author": {
  9. "name": "OpenJS Foundation and other contributors",
  10. "url": "https://github.com/jquery/jquery/blob/3.7.1/AUTHORS.txt"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/jquery/jquery.git"
  15. },
  16. "keywords": [
  17. "jquery",
  18. "javascript",
  19. "browser",
  20. "library"
  21. ],
  22. "bugs": {
  23. "url": "https://github.com/jquery/jquery/issues"
  24. },
  25. "license": "MIT",
  26. "devDependencies": {
  27. "@babel/core": "7.3.3",
  28. "@babel/plugin-transform-for-of": "7.2.0",
  29. "bootstrap": "5.3.0",
  30. "colors": "1.4.0",
  31. "commitplease": "3.2.0",
  32. "core-js": "2.6.5",
  33. "eslint-config-jquery": "3.0.0",
  34. "grunt": "1.5.3",
  35. "grunt-babel": "8.0.0",
  36. "grunt-cli": "1.4.3",
  37. "grunt-compare-size": "0.4.2",
  38. "grunt-contrib-uglify": "3.4.0",
  39. "grunt-contrib-watch": "1.1.0",
  40. "grunt-eslint": "22.0.0",
  41. "grunt-git-authors": "3.2.0",
  42. "grunt-jsonlint": "2.1.2",
  43. "grunt-karma": "4.0.2",
  44. "grunt-newer": "1.3.0",
  45. "grunt-npmcopy": "0.2.0",
  46. "gzip-js": "0.3.2",
  47. "husky": "4.2.5",
  48. "jsdom": "19.0.0",
  49. "karma": "6.4.1",
  50. "karma-browserstack-launcher": "1.6.0",
  51. "karma-chrome-launcher": "3.1.1",
  52. "karma-firefox-launcher": "2.1.2",
  53. "karma-ie-launcher": "1.0.0",
  54. "karma-jsdom-launcher": "12.0.0",
  55. "karma-qunit": "4.1.2",
  56. "karma-webkit-launcher": "2.1.0",
  57. "load-grunt-tasks": "5.1.0",
  58. "native-promise-only": "0.8.1",
  59. "playwright-webkit": "1.30.0",
  60. "promises-aplus-tests": "2.1.2",
  61. "q": "1.5.1",
  62. "qunit": "2.9.2",
  63. "raw-body": "2.3.3",
  64. "requirejs": "2.3.6",
  65. "sinon": "2.3.7",
  66. "strip-json-comments": "2.0.1",
  67. "testswarm": "1.1.2",
  68. "uglify-js": "3.4.7"
  69. },
  70. "scripts": {
  71. "build": "npm install && npm run build-all-variants",
  72. "build-all-variants": "grunt custom:slim --filename=jquery.slim.js && grunt custom",
  73. "start": "grunt watch",
  74. "test:browserless": "grunt && npm run test:node_smoke_tests && grunt test:slow",
  75. "test:browser": "grunt && grunt karma:main",
  76. "test:amd": "grunt && grunt karma:amd",
  77. "test:no-deprecated": "grunt test:prepare && grunt custom:-deprecated && grunt karma:main",
  78. "test:selector-native": "grunt test:prepare && grunt custom:-selector && grunt karma:main",
  79. "test:slim": "grunt test:prepare && grunt custom:slim && grunt karma:main",
  80. "test:node_smoke_tests:full": "grunt node_smoke_tests:./dist/jquery.js",
  81. "test:node_smoke_tests:slim": "grunt node_smoke_tests:./dist/jquery.slim.js",
  82. "test:node_smoke_tests": "npm run test:node_smoke_tests:full && npm run test:node_smoke_tests:slim",
  83. "test": "npm run test:browserless && npm run test:slim && npm run test:no-deprecated && npm run test:selector-native && grunt && grunt test:slow && grunt karma:main && grunt karma:amd",
  84. "jenkins": "npm run test:browserless"
  85. },
  86. "commitplease": {
  87. "nohook": true,
  88. "components": [
  89. "Docs",
  90. "Tests",
  91. "Build",
  92. "Support",
  93. "Release",
  94. "Core",
  95. "Ajax",
  96. "Attributes",
  97. "Callbacks",
  98. "CSS",
  99. "Data",
  100. "Deferred",
  101. "Deprecated",
  102. "Dimensions",
  103. "Effects",
  104. "Event",
  105. "Manipulation",
  106. "Offset",
  107. "Queue",
  108. "Selector",
  109. "Serialize",
  110. "Traversing",
  111. "Wrap"
  112. ],
  113. "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
  114. "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
  115. },
  116. "husky": {
  117. "hooks": {
  118. "commit-msg": "commitplease .git/COMMIT_EDITMSG",
  119. "pre-commit": "grunt lint:newer qunit_fixture"
  120. }
  121. }
  122. }