package.json 965 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "yeast",
  3. "version": "0.1.2",
  4. "description": "Tiny but linear growing unique id generator",
  5. "main": "index.js",
  6. "scripts": {
  7. "100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
  8. "test-node": "istanbul cover _mocha --report lcovonly -- test.js",
  9. "coverage": "istanbul cover _mocha -- test.js",
  10. "test-browser": "zuul -- test.js",
  11. "watch": "mocha --watch test.js",
  12. "test": "mocha test.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/unshiftio/yeast.git"
  17. },
  18. "keywords": [
  19. "yeast",
  20. "id",
  21. "generator",
  22. "unique"
  23. ],
  24. "author": "Arnout Kazemier",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/unshiftio/yeast/issues"
  28. },
  29. "homepage": "https://github.com/unshiftio/yeast",
  30. "devDependencies": {
  31. "assume": "1.3.x",
  32. "istanbul": "0.3.x",
  33. "mocha": "2.3.x",
  34. "pre-commit": "1.1.x",
  35. "zuul": "3.4.x"
  36. }
  37. }