package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "jquery",
  3. "title": "jQuery",
  4. "description": "JavaScript library for DOM operations",
  5. "version": "2.2.4",
  6. "main": "dist/jquery.js",
  7. "homepage": "http://jquery.com",
  8. "author": {
  9. "name": "jQuery Foundation and other contributors",
  10. "url": "https://github.com/jquery/jquery/blob/2.2.4/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. "commitplease": "2.0.0",
  29. "core-js": "0.9.17",
  30. "grunt": "0.4.5",
  31. "grunt-babel": "5.0.1",
  32. "grunt-cli": "0.1.13",
  33. "grunt-compare-size": "0.4.0",
  34. "grunt-contrib-jshint": "0.11.2",
  35. "grunt-contrib-uglify": "0.9.2",
  36. "grunt-contrib-watch": "0.6.1",
  37. "grunt-git-authors": "2.0.1",
  38. "grunt-jscs": "2.1.0",
  39. "grunt-jsonlint": "1.0.4",
  40. "grunt-npmcopy": "0.1.0",
  41. "gzip-js": "0.3.2",
  42. "jsdom": "5.6.1",
  43. "load-grunt-tasks": "1.0.0",
  44. "qunitjs": "1.17.1",
  45. "qunit-assert-step": "1.0.3",
  46. "requirejs": "2.1.17",
  47. "sinon": "1.10.3",
  48. "sizzle": "2.2.1",
  49. "strip-json-comments": "1.0.3",
  50. "testswarm": "1.1.0",
  51. "win-spawn": "2.0.0"
  52. },
  53. "scripts": {
  54. "build": "npm install && grunt",
  55. "start": "grunt watch",
  56. "test": "grunt && grunt test"
  57. },
  58. "commitplease": {
  59. "components": [
  60. "Docs",
  61. "Tests",
  62. "Build",
  63. "Release",
  64. "Core",
  65. "Ajax",
  66. "Attributes",
  67. "Callbacks",
  68. "CSS",
  69. "Data",
  70. "Deferred",
  71. "Deprecated",
  72. "Dimensions",
  73. "Effects",
  74. "Event",
  75. "Manipulation",
  76. "Offset",
  77. "Queue",
  78. "Selector",
  79. "Serialize",
  80. "Traversing",
  81. "Wrap"
  82. ]
  83. }
  84. }