package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "when",
  3. "version": "3.6.4",
  4. "description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.",
  5. "keywords": [
  6. "cujo",
  7. "Promises/A+",
  8. "promises-aplus",
  9. "promise",
  10. "promises",
  11. "deferred",
  12. "deferreds",
  13. "when",
  14. "async",
  15. "asynchronous",
  16. "ender"
  17. ],
  18. "homepage": "http://cujojs.com",
  19. "licenses": [
  20. {
  21. "type": "MIT",
  22. "url": "http://www.opensource.org/licenses/mit-license.php"
  23. }
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/cujojs/when"
  28. },
  29. "bugs": "https://github.com/cujojs/when/issues",
  30. "maintainers": [
  31. {
  32. "name": "Brian Cavalier",
  33. "web": "http://hovercraftstudios.com"
  34. },
  35. {
  36. "name": "John Hann",
  37. "web": "http://unscriptable.com"
  38. }
  39. ],
  40. "contributors": [
  41. {
  42. "name": "Brian Cavalier",
  43. "web": "http://hovercraftstudios.com"
  44. },
  45. {
  46. "name": "John Hann",
  47. "web": "http://unscriptable.com"
  48. },
  49. {
  50. "name": "Scott Andrews"
  51. }
  52. ],
  53. "devDependencies": {
  54. "promises-aplus-tests": "~2",
  55. "benchmark": "~1",
  56. "microtime": "~0",
  57. "browserify": "~2",
  58. "buster": "~0.7",
  59. "jshint": "~2",
  60. "rest": "1.1.x",
  61. "optimist": "~0.6",
  62. "sauce-connect-launcher": "~0.4",
  63. "wd": "~0.2",
  64. "json5": "~0.2",
  65. "poly": "git://github.com/cujojs/poly#0.6.0"
  66. },
  67. "main": "when",
  68. "ender": { "files": ["*.js", "lib/*.js", "node/*.js", "unfold/*.js", "monitor/*.js"] },
  69. "browser": {
  70. "vertx": false
  71. },
  72. "directories": {
  73. "test": "test"
  74. },
  75. "scripts": {
  76. "test": "jshint . && buster-test -e node && promises-aplus-tests test/promises-aplus-adapter.js",
  77. "build-browser-test": "browserify ./node_modules/poly/es5.js -o test/browser/es5.js && browserify ./test/*-test.js ./test/**/*-test.js -o test/browser/tests.js -x buster ",
  78. "browser-test": "npm run build-browser-test && buster-static -e browser -p 8080",
  79. "ci": "npm test && node test/sauce.js",
  80. "tunnel": "node test/sauce.js -m",
  81. "start": "buster-static -e browser",
  82. "benchmark": "node benchmark/promise && node benchmark/map",
  83. "browserify-es6": "browserify -s Promise es6-shim/Promise.browserify-es6.js --no-detect-globals -o es6-shim/Promise.js",
  84. "browserify": "browserify -s when build/when.browserify.js --no-detect-globals -o build/when.js",
  85. "browserify-debug": "browserify -s when build/when.browserify-debug.js --no-detect-globals -o build/when.js"
  86. }
  87. }