package.json 734 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "one-time",
  3. "version": "1.0.0",
  4. "description": "Run the supplied function exactly one time (once)",
  5. "main": "index.js",
  6. "scripts": {
  7. "test:runner": "mocha test.js",
  8. "test:watch": "npm run test:runner -- --watch",
  9. "test": "nyc --reporter=text --reporter=json-summary npm run test:runner"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/3rd-Eden/one-time.git"
  14. },
  15. "keywords": [
  16. "once",
  17. "function",
  18. "single",
  19. "one",
  20. "one-time",
  21. "execution",
  22. "nope"
  23. ],
  24. "author": "Arnout Kazemier",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "assume": "^2.2.0",
  28. "mocha": "^6.1.4",
  29. "nyc": "^14.1.0"
  30. },
  31. "dependencies": {
  32. "fn.name": "1.x.x"
  33. }
  34. }