package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "knockout",
  3. "description": "Knockout makes it easier to create rich, responsive UIs with JavaScript",
  4. "homepage": "http://knockoutjs.com/",
  5. "version": "3.4.2",
  6. "license": "MIT",
  7. "author": "The Knockout.js team",
  8. "main": "build/output/knockout-latest.debug.js",
  9. "scripts": {
  10. "prepublish": "grunt",
  11. "test": "node spec/runner.node.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/knockout/knockout.git"
  16. },
  17. "bugs": "https://github.com/knockout/knockout/issues",
  18. "testling": {
  19. "preprocess": "build/build.sh",
  20. "html": "spec/runner.html?src=build/output/knockout-latest.js&testling=true",
  21. "browsers": [
  22. "ie/6..latest",
  23. "chrome/20..latest",
  24. "firefox/3..latest",
  25. "safari/5.0.5..latest",
  26. "opera/11.0..latest",
  27. "iphone/6..latest",
  28. "ipad/6..latest"
  29. ]
  30. },
  31. "licenses": [
  32. { "type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php" }
  33. ],
  34. "devDependencies": {
  35. "grunt": "~0.4.1",
  36. "grunt-cli": "~0.1.0",
  37. "closure-compiler": "~0.2.1"
  38. }
  39. }