package.json 986 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "is-natural-number",
  3. "version": "4.0.1",
  4. "description": "Check if a value is a natural number",
  5. "repository": "shinnn/is-natural-number.js",
  6. "author": "Shinnosuke Watanabe (https://github.com/shinnn)",
  7. "scripts": {
  8. "pretest": "eslint --config @shinnn --ignore-path .gitignore .",
  9. "test": "node --strong_mode --throw-deprecation --track-heap-objects test.js | tap-dot",
  10. "coverage": "node --strong_mode node_modules/.bin/istanbul cover test.js"
  11. },
  12. "license": "MIT",
  13. "jsnext:main": "index.jsnext.js",
  14. "files": [
  15. "index.js",
  16. "index.jsnext.js"
  17. ],
  18. "keywords": [
  19. "number",
  20. "natural",
  21. "check",
  22. "int",
  23. "integer",
  24. "math",
  25. "mathematics",
  26. "range",
  27. "browser",
  28. "client-side"
  29. ],
  30. "devDependencies": {
  31. "@shinnn/eslint-config": "^2.1.0",
  32. "eslint": "^2.9.0",
  33. "istanbul": "^0.4.3",
  34. "require-from-string": "^1.2.0",
  35. "rollup": "^0.26.3",
  36. "tap-dot": "^1.0.5",
  37. "tape": "^4.5.1"
  38. }
  39. }