package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "array-map",
  3. "version": "0.0.1",
  4. "description": "`[].map(f)` for older browsers",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "@ljharb/eslint-config": "^21.0.0",
  8. "aud": "^2.0.1",
  9. "auto-changelog": "^2.4.0",
  10. "eslint": "=8.8.0",
  11. "in-publish": "^2.0.1",
  12. "npmignore": "^0.3.0",
  13. "safe-publish-latest": "^2.0.0",
  14. "tape": "^5.6.1"
  15. },
  16. "scripts": {
  17. "prepack": "npmignore --auto --commentLines=autogenerated",
  18. "prepublish": "not-in-publish || npm run prepublishOnly",
  19. "prepublishOnly": "safe-publish-latest",
  20. "lint": "eslint --ext=js,mjs .",
  21. "pretest": "npm run lint",
  22. "tests-only": "tape 'test/**/*.js'",
  23. "test": "npm run tests-only",
  24. "posttest": "aud --production",
  25. "version": "auto-changelog && git add CHANGELOG.md",
  26. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/ljharb/array-map.git"
  31. },
  32. "homepage": "https://github.com/ljharb/array-map",
  33. "keywords": [
  34. "array",
  35. "map",
  36. "browser",
  37. "es5",
  38. "shim",
  39. "ie6",
  40. "ie7",
  41. "ie8"
  42. ],
  43. "author": {
  44. "name": "James Halliday",
  45. "email": "mail@substack.net",
  46. "url": "http://substack.net"
  47. },
  48. "funding": {
  49. "url": "https://github.com/sponsors/ljharb"
  50. },
  51. "license": "MIT",
  52. "testling": {
  53. "files": "test/*.js",
  54. "browsers": [
  55. "ie/6..latest",
  56. "firefox/3.5",
  57. "firefox/latest",
  58. "chrome/5",
  59. "chrome/latest",
  60. "opera/12..latest",
  61. "opera/next",
  62. "safari/5.1..latest",
  63. "ipad/6.0..latest",
  64. "iphone/6.0..latest",
  65. "android-browser/4.2..latest"
  66. ]
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true
  75. },
  76. "publishConfig": {
  77. "ignore": [
  78. ".github/workflows"
  79. ]
  80. }
  81. }