package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "jquery",
  3. "title": "jQuery",
  4. "description": "JavaScript library for DOM operations",
  5. "version": "3.1.1",
  6. "main": "dist/jquery.js",
  7. "homepage": "https://jquery.com",
  8. "author": {
  9. "name": "jQuery Foundation and other contributors",
  10. "url": "https://github.com/jquery/jquery/blob/3.1.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-preset-es2015": "6.6.0",
  29. "commitplease": "2.6.1",
  30. "core-js": "2.2.2",
  31. "cross-spawn": "2.2.3",
  32. "eslint-config-jquery": "1.0.0",
  33. "grunt": "1.0.1",
  34. "grunt-babel": "6.0.0",
  35. "grunt-cli": "1.2.0",
  36. "grunt-compare-size": "0.4.2",
  37. "grunt-contrib-uglify": "1.0.1",
  38. "grunt-contrib-watch": "1.0.0",
  39. "grunt-eslint": "19.0.0",
  40. "grunt-git-authors": "3.2.0",
  41. "grunt-jsonlint": "1.0.7",
  42. "grunt-newer": "1.2.0",
  43. "grunt-npmcopy": "0.1.0",
  44. "gzip-js": "0.3.2",
  45. "husky": "0.11.4",
  46. "insight": "0.8.1",
  47. "jsdom": "5.6.1",
  48. "load-grunt-tasks": "3.5.0",
  49. "native-promise-only": "0.8.1",
  50. "promises-aplus-tests": "2.1.2",
  51. "q": "1.4.1",
  52. "qunit-assert-step": "1.0.3",
  53. "qunitjs": "1.23.1",
  54. "requirejs": "2.2.0",
  55. "sinon": "1.17.3",
  56. "sizzle": "2.3.3",
  57. "strip-json-comments": "2.0.1",
  58. "testswarm": "1.1.0"
  59. },
  60. "scripts": {
  61. "build": "npm install && grunt",
  62. "start": "grunt watch",
  63. "test": "grunt && grunt test:slow",
  64. "precommit": "grunt lint:newer",
  65. "commitmsg": "node node_modules/commitplease"
  66. },
  67. "commitplease": {
  68. "nohook": true,
  69. "components": [
  70. "Docs",
  71. "Tests",
  72. "Build",
  73. "Support",
  74. "Release",
  75. "Core",
  76. "Ajax",
  77. "Attributes",
  78. "Callbacks",
  79. "CSS",
  80. "Data",
  81. "Deferred",
  82. "Deprecated",
  83. "Dimensions",
  84. "Effects",
  85. "Event",
  86. "Manipulation",
  87. "Offset",
  88. "Queue",
  89. "Selector",
  90. "Serialize",
  91. "Traversing",
  92. "Wrap"
  93. ],
  94. "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|(refs?)",
  95. "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|(Refs? [^#])"
  96. }
  97. }