package.json 769 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "spdx-license-ids",
  3. "version": "3.0.8",
  4. "description": "A list of SPDX license identifiers",
  5. "repository": "jslicense/spdx-license-ids",
  6. "author": "Shinnosuke Watanabe (https://github.com/shinnn)",
  7. "license": "CC0-1.0",
  8. "scripts": {
  9. "build": "node build.js",
  10. "pretest": "eslint .",
  11. "latest": "node latest.js",
  12. "test": "node test.js"
  13. },
  14. "files": [
  15. "deprecated.json",
  16. "index.json"
  17. ],
  18. "keywords": [
  19. "spdx",
  20. "license",
  21. "licenses",
  22. "id",
  23. "identifier",
  24. "identifiers",
  25. "json",
  26. "array",
  27. "oss"
  28. ],
  29. "devDependencies": {
  30. "@shinnn/eslint-config": "^6.8.7",
  31. "chalk": "^2.4.1",
  32. "eslint": "^5.10.0",
  33. "get-spdx-license-ids": "^2.1.0",
  34. "rmfr": "^2.0.0",
  35. "tape": "^4.9.1"
  36. },
  37. "eslintConfig": {
  38. "extends": "@shinnn"
  39. }
  40. }