package.json 927 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "validate-npm-package-name",
  3. "version": "3.0.0",
  4. "description": "Give me a string and I'll tell you if it's a valid npm package name",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "dependencies": {
  10. "builtins": "^1.0.3"
  11. },
  12. "devDependencies": {
  13. "standard": "^8.6.0",
  14. "tap": "^10.0.0"
  15. },
  16. "scripts": {
  17. "cov:test": "TAP_FLAGS='--cov' npm run test:code",
  18. "test:code": "tap ${TAP_FLAGS:-'--'} test/*.js",
  19. "test:style": "standard",
  20. "test": "npm run test:code && npm run test:style"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/npm/validate-npm-package-name"
  25. },
  26. "keywords": [
  27. "npm",
  28. "package",
  29. "names",
  30. "validation"
  31. ],
  32. "author": "zeke",
  33. "license": "ISC",
  34. "bugs": {
  35. "url": "https://github.com/npm/validate-npm-package-name/issues"
  36. },
  37. "homepage": "https://github.com/npm/validate-npm-package-name"
  38. }