package.json 681 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "validate-npm-package-license",
  3. "description": "Give me a string and I'll tell you if it's a valid npm package license string",
  4. "version": "3.0.3",
  5. "author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com)",
  6. "dependencies": {
  7. "spdx-correct": "^3.0.0",
  8. "spdx-expression-parse": "^3.0.0"
  9. },
  10. "devDependencies": {
  11. "defence-cli": "^2.0.1",
  12. "replace-require-self": "^1.0.0"
  13. },
  14. "keywords": [
  15. "license",
  16. "npm",
  17. "package",
  18. "validation"
  19. ],
  20. "license": "Apache-2.0",
  21. "repository": "kemitchell/validate-npm-package-license.js",
  22. "scripts": {
  23. "test": "defence README.md | replace-require-self | node"
  24. }
  25. }