package.json 1012 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "author": "GitHub Inc.",
  3. "name": "ini",
  4. "description": "An ini encoder/decoder for node",
  5. "version": "4.0.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/ini.git"
  9. },
  10. "main": "lib/ini.js",
  11. "scripts": {
  12. "eslint": "eslint",
  13. "lint": "eslint \"**/*.js\"",
  14. "lintfix": "npm run lint -- --fix",
  15. "test": "tap",
  16. "snap": "tap",
  17. "posttest": "npm run lint",
  18. "postlint": "template-oss-check",
  19. "template-oss-apply": "template-oss-apply --force"
  20. },
  21. "devDependencies": {
  22. "@npmcli/eslint-config": "^4.0.0",
  23. "@npmcli/template-oss": "4.12.0",
  24. "tap": "^16.0.1"
  25. },
  26. "license": "ISC",
  27. "files": [
  28. "bin/",
  29. "lib/"
  30. ],
  31. "engines": {
  32. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  33. },
  34. "templateOSS": {
  35. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  36. "version": "4.12.0"
  37. },
  38. "tap": {
  39. "nyc-arg": [
  40. "--exclude",
  41. "tap-snapshots/**"
  42. ]
  43. }
  44. }