package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "jquery",
  3. "title": "jQuery",
  4. "description": "JavaScript library for DOM operations",
  5. "version": "2.1.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.1.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": "http://bugs.jquery.com"
  24. },
  25. "licenses": [
  26. {
  27. "type": "MIT",
  28. "url": "https://github.com/jquery/jquery/blob/2.1.4/MIT-LICENSE.txt"
  29. }
  30. ],
  31. "devDependencies": {
  32. "commitplease": "2.0.0",
  33. "grunt": "0.4.2",
  34. "grunt-bowercopy": "0.7.1",
  35. "grunt-cli": "0.1.13",
  36. "grunt-compare-size": "0.4.0",
  37. "grunt-contrib-jshint": "0.8.0",
  38. "grunt-contrib-uglify": "0.3.2",
  39. "grunt-contrib-watch": "0.5.3",
  40. "grunt-git-authors": "1.2.0",
  41. "grunt-jscs-checker": "0.4.1",
  42. "grunt-jsonlint": "1.0.4",
  43. "gzip-js": "0.3.2",
  44. "jsdom": "1.5.0",
  45. "load-grunt-tasks": "0.3.0",
  46. "requirejs": "2.1.10",
  47. "testswarm": "1.1.0"
  48. },
  49. "scripts": {
  50. "build": "npm install && grunt",
  51. "start": "grunt watch",
  52. "test": "grunt"
  53. },
  54. "pak": {
  55. "export": {
  56. "trim": 1
  57. },
  58. "origin": "@npm/jquery"
  59. },
  60. "files": "dist/jquery.*"
  61. }