package.json 883 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "fn.name",
  3. "version": "1.1.0",
  4. "description": "Extract names from functions",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha test.js",
  8. "watch": "mocha --watch test.js",
  9. "coverage": "istanbul cover ./node_modules/.bin/_mocha -- test.js",
  10. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/3rd-Eden/fn.name"
  15. },
  16. "keywords": [
  17. "fn.name",
  18. "function.name",
  19. "name",
  20. "function",
  21. "extract",
  22. "parse",
  23. "names"
  24. ],
  25. "author": "Arnout Kazemier",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/3rd-Eden/fn.name/issues"
  29. },
  30. "devDependencies": {
  31. "assume": "2.x.x",
  32. "istanbul": "0.3.x",
  33. "mocha": "5.x.x",
  34. "pre-commit": "1.x.x"
  35. },
  36. "homepage": "https://github.com/3rd-Eden/fn.name"
  37. }