package.json 873 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "one-time",
  3. "version": "0.0.4",
  4. "description": "Run the supplied function exactly one time (once)",
  5. "main": "index.js",
  6. "scripts": {
  7. "100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
  8. "test": "mocha test.js",
  9. "watch": "mocha --watch test.js",
  10. "coverage": "istanbul cover ./node_modules/.bin/_mocha -- test.js",
  11. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/unshiftio/one-time"
  16. },
  17. "keywords": [
  18. "once",
  19. "function",
  20. "single",
  21. "one",
  22. "one-time",
  23. "execution",
  24. "nope"
  25. ],
  26. "author": "Arnout Kazemier",
  27. "license": "MIT",
  28. "devDependencies": {
  29. "assume": "1.2.x",
  30. "istanbul": "0.3.x",
  31. "mocha": "2.2.x",
  32. "pre-commit": "1.0.x"
  33. }
  34. }