package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "normalize-package-data",
  3. "version": "3.0.3",
  4. "author": "Meryn Stol <merynstol@gmail.com>",
  5. "description": "Normalizes data that can be found in package.json files.",
  6. "license": "BSD-2-Clause",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/npm/normalize-package-data.git"
  10. },
  11. "main": "lib/normalize.js",
  12. "scripts": {
  13. "postversion": "npm publish",
  14. "prepublishOnly": "git push origin --follow-tags",
  15. "preversion": "npm test",
  16. "test": "tap test/*.js --branches 85 --functions 90 --lines 85 --statements 85",
  17. "npmclilint": "npmcli-lint",
  18. "lint": "npm run npmclilint -- \"lib/**/*.*js\" \"test/**/*.*js\"",
  19. "lintfix": "npm run lint -- --fix",
  20. "posttest": "npm run lint --",
  21. "postsnap": "npm run lintfix --"
  22. },
  23. "dependencies": {
  24. "hosted-git-info": "^4.0.1",
  25. "is-core-module": "^2.5.0",
  26. "semver": "^7.3.4",
  27. "validate-npm-package-license": "^3.0.1"
  28. },
  29. "devDependencies": {
  30. "@npmcli/lint": "^1.0.2",
  31. "tap": "^15.0.9"
  32. },
  33. "files": [
  34. "lib/*.js",
  35. "lib/*.json",
  36. "AUTHORS"
  37. ],
  38. "engines": {
  39. "node": ">=10"
  40. }
  41. }