package.json 1012 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "mz",
  3. "description": "modernize node.js to current ECMAScript standards",
  4. "version": "2.7.0",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "license": "MIT",
  12. "repository": "normalize/mz",
  13. "dependencies": {
  14. "any-promise": "^1.0.0",
  15. "object-assign": "^4.0.1",
  16. "thenify-all": "^1.0.0"
  17. },
  18. "devDependencies": {
  19. "istanbul": "^0.4.0",
  20. "bluebird": "^3.0.0",
  21. "mocha": "^3.0.0"
  22. },
  23. "scripts": {
  24. "test": "mocha --reporter spec",
  25. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  26. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  27. },
  28. "keywords": [
  29. "promisify",
  30. "promise",
  31. "thenify",
  32. "then",
  33. "es6"
  34. ],
  35. "files": [
  36. "index.js",
  37. "child_process.js",
  38. "crypto.js",
  39. "dns.js",
  40. "fs.js",
  41. "readline.js",
  42. "zlib.js"
  43. ]
  44. }