package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "spdx-correct",
  3. "description": "correct invalid SPDX expressions",
  4. "version": "3.1.1",
  5. "author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com)",
  6. "contributors": [
  7. "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com)",
  8. "Christian Zommerfelds <aero_super@yahoo.com>",
  9. "Tal Einat <taleinat@gmail.com>",
  10. "Dan Butvinik <butvinik@outlook.com>"
  11. ],
  12. "dependencies": {
  13. "spdx-expression-parse": "^3.0.0",
  14. "spdx-license-ids": "^3.0.0"
  15. },
  16. "devDependencies": {
  17. "defence-cli": "^2.0.1",
  18. "replace-require-self": "^1.0.0",
  19. "standard": "^11.0.0",
  20. "standard-markdown": "^4.0.2",
  21. "tape": "^4.9.0"
  22. },
  23. "files": [
  24. "index.js"
  25. ],
  26. "keywords": [
  27. "SPDX",
  28. "law",
  29. "legal",
  30. "license",
  31. "metadata"
  32. ],
  33. "license": "Apache-2.0",
  34. "repository": "jslicense/spdx-correct.js",
  35. "scripts": {
  36. "lint": "standard && standard-markdown README.md",
  37. "test": "defence README.md | replace-require-self | node && node test.js"
  38. }
  39. }