package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "main": "lib/async.js",
  5. "files": [
  6. "lib",
  7. "dist/async.js",
  8. "dist/async.min.js"
  9. ],
  10. "author": "Caolan McMahon",
  11. "version": "1.5.2",
  12. "keywords": [
  13. "async",
  14. "callback",
  15. "utility",
  16. "module"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/caolan/async.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/caolan/async/issues"
  24. },
  25. "license": "MIT",
  26. "devDependencies": {
  27. "benchmark": "bestiejs/benchmark.js",
  28. "bluebird": "^2.9.32",
  29. "chai": "^3.1.0",
  30. "coveralls": "^2.11.2",
  31. "es6-promise": "^2.3.0",
  32. "jscs": "^1.13.1",
  33. "jshint": "~2.8.0",
  34. "karma": "^0.13.2",
  35. "karma-browserify": "^4.2.1",
  36. "karma-firefox-launcher": "^0.1.6",
  37. "karma-mocha": "^0.2.0",
  38. "karma-mocha-reporter": "^1.0.2",
  39. "lodash": "^3.9.0",
  40. "mkdirp": "~0.5.1",
  41. "mocha": "^2.2.5",
  42. "native-promise-only": "^0.8.0-a",
  43. "nodeunit": ">0.0.0",
  44. "nyc": "^2.1.0",
  45. "rsvp": "^3.0.18",
  46. "semver": "^4.3.6",
  47. "uglify-js": "~2.4.0",
  48. "xyz": "^0.5.0",
  49. "yargs": "~3.9.1"
  50. },
  51. "jam": {
  52. "main": "lib/async.js",
  53. "include": [
  54. "lib/async.js",
  55. "README.md",
  56. "LICENSE"
  57. ],
  58. "categories": [
  59. "Utilities"
  60. ]
  61. },
  62. "scripts": {
  63. "mocha-node-test": "mocha mocha_test/",
  64. "mocha-browser-test": "karma start",
  65. "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
  66. "nodeunit-test": "nodeunit test/test-async.js",
  67. "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test",
  68. "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js",
  69. "coverage": "nyc npm test && nyc report",
  70. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
  71. },
  72. "spm": {
  73. "main": "lib/async.js"
  74. },
  75. "volo": {
  76. "main": "lib/async.js",
  77. "ignore": [
  78. "**/.*",
  79. "node_modules",
  80. "bower_components",
  81. "test",
  82. "tests"
  83. ]
  84. }
  85. }