package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. {
  2. "name": "jquery",
  3. "title": "jQuery",
  4. "description": "JavaScript library for DOM operations",
  5. "version": "3.3.1",
  6. "main": "dist/jquery.js",
  7. "homepage": "https://jquery.com",
  8. "author": {
  9. "name": "JS Foundation and other contributors",
  10. "url": "https://github.com/jquery/jquery/blob/3.3.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. "dependencies": {},
  27. "devDependencies": {
  28. "babel-core": "7.0.0-beta.0",
  29. "babel-plugin-transform-es2015-for-of": "7.0.0-beta.0",
  30. "commitplease": "2.7.10",
  31. "core-js": "2.4.1",
  32. "eslint-config-jquery": "1.0.1",
  33. "grunt": "1.0.1",
  34. "grunt-babel": "7.0.0",
  35. "grunt-cli": "1.2.0",
  36. "grunt-compare-size": "0.4.2",
  37. "grunt-contrib-uglify": "3.0.1",
  38. "grunt-contrib-watch": "1.0.0",
  39. "grunt-eslint": "20.0.0",
  40. "grunt-git-authors": "3.2.0",
  41. "grunt-jsonlint": "1.1.0",
  42. "grunt-karma": "2.0.0",
  43. "grunt-newer": "1.3.0",
  44. "grunt-npmcopy": "0.1.0",
  45. "gzip-js": "0.3.2",
  46. "husky": "0.14.3",
  47. "insight": "0.8.4",
  48. "jsdom": "5.6.1",
  49. "karma": "1.7.0",
  50. "karma-browserstack-launcher": "1.3.0",
  51. "karma-chrome-launcher": "2.2.0",
  52. "karma-firefox-launcher": "1.0.1",
  53. "karma-qunit": "1.2.1",
  54. "load-grunt-tasks": "3.5.2",
  55. "native-promise-only": "0.8.1",
  56. "promises-aplus-tests": "2.1.2",
  57. "q": "1.5.0",
  58. "qunit-assert-step": "1.0.3",
  59. "qunitjs": "1.23.1",
  60. "raw-body": "2.2.0",
  61. "requirejs": "2.3.3",
  62. "sinon": "2.3.7",
  63. "sizzle": "2.3.3",
  64. "strip-json-comments": "2.0.1",
  65. "testswarm": "1.1.0",
  66. "uglify-js": "3.3.4"
  67. },
  68. "scripts": {
  69. "build": "npm install && grunt",
  70. "start": "grunt watch",
  71. "test:browserless": "grunt && grunt test:slow",
  72. "test:browser": "grunt && grunt karma:main",
  73. "test": "grunt && grunt test:slow && grunt karma:main",
  74. "jenkins": "npm run test:browserless",
  75. "precommit": "grunt lint:newer qunit_fixture",
  76. "commitmsg": "node node_modules/commitplease"
  77. },
  78. "commitplease": {
  79. "nohook": true,
  80. "components": [
  81. "Docs",
  82. "Tests",
  83. "Build",
  84. "Support",
  85. "Release",
  86. "Core",
  87. "Ajax",
  88. "Attributes",
  89. "Callbacks",
  90. "CSS",
  91. "Data",
  92. "Deferred",
  93. "Deprecated",
  94. "Dimensions",
  95. "Effects",
  96. "Event",
  97. "Manipulation",
  98. "Offset",
  99. "Queue",
  100. "Selector",
  101. "Serialize",
  102. "Traversing",
  103. "Wrap"
  104. ],
  105. "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)",
  106. "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])"
  107. }
  108. }