package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "q",
  3. "version": "1.4.1",
  4. "description": "A library for promises (CommonJS/Promises/A,B,D)",
  5. "homepage": "https://github.com/kriskowal/q",
  6. "author": "Kris Kowal <kris@cixar.com> (https://github.com/kriskowal)",
  7. "keywords": [
  8. "q",
  9. "promise",
  10. "promises",
  11. "promises-a",
  12. "promises-aplus",
  13. "deferred",
  14. "future",
  15. "async",
  16. "flow control",
  17. "fluent",
  18. "browser",
  19. "node"
  20. ],
  21. "contributors": [
  22. "Kris Kowal <kris@cixar.com> (https://github.com/kriskowal)",
  23. "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
  24. "Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)"
  25. ],
  26. "bugs": {
  27. "mail": "kris@cixar.com",
  28. "url": "http://github.com/kriskowal/q/issues"
  29. },
  30. "license": {
  31. "type": "MIT",
  32. "url": "http://github.com/kriskowal/q/raw/master/LICENSE"
  33. },
  34. "main": "q.js",
  35. "files": [
  36. "LICENSE",
  37. "q.js",
  38. "queue.js"
  39. ],
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/kriskowal/q.git"
  43. },
  44. "engines": {
  45. "node": ">=0.6.0",
  46. "teleport": ">=0.2.0"
  47. },
  48. "dependencies": {},
  49. "devDependencies": {
  50. "cover": "*",
  51. "grunt": "~0.4.1",
  52. "grunt-cli": "~0.1.9",
  53. "grunt-contrib-uglify": "~0.9.1",
  54. "jasmine-node": "1.11.0",
  55. "jshint": "~2.1.9",
  56. "matcha": "~0.2.0",
  57. "opener": "*",
  58. "promises-aplus-tests": "1.x"
  59. },
  60. "scripts": {
  61. "test": "jasmine-node spec && promises-aplus-tests spec/aplus-adapter",
  62. "test-browser": "opener spec/q-spec.html",
  63. "benchmark": "matcha",
  64. "lint": "jshint q.js",
  65. "cover": "cover run jasmine-node spec && cover report html && opener cover_html/index.html",
  66. "minify": "grunt",
  67. "prepublish": "grunt"
  68. },
  69. "overlay": {
  70. "teleport": {
  71. "dependencies": {
  72. "system": ">=0.0.4"
  73. }
  74. }
  75. },
  76. "directories": {
  77. "test": "./spec"
  78. }
  79. }