package.json 501 B

12345678910111213141516171819202122
  1. {
  2. "name": "batch-processor",
  3. "version": "1.0.0",
  4. "description": "Batch processing in JS",
  5. "main": "src/batch-processor.js",
  6. "scripts": {
  7. "test": "mocha"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/wnr/batch-processor.git"
  12. },
  13. "author": "Lucas Wiener",
  14. "license": "MIT",
  15. "bugs": {
  16. "url": "https://github.com/wnr/batch-processor/issues"
  17. },
  18. "homepage": "https://github.com/wnr/batch-processor",
  19. "devDependencies": {
  20. "mocha": "^2.4.5"
  21. }
  22. }