package.json 911 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "es-array-method-boxes-properly",
  3. "version": "1.0.0",
  4. "description": "Utility package to determine if an `Array.prototype` method properly boxes the callback's receiver and third argument.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "safe-publish-latest",
  8. "lint": "eslint .",
  9. "pretest": "npm run lint",
  10. "tests-only": "node test",
  11. "test": "npm run tests-only",
  12. "posttest": "npx aud"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/ljharb/es-array-method-boxes-properly.git"
  17. },
  18. "author": "Jordan Harband <ljharb@gmail.com>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/ljharb/es-array-method-boxes-properly/issues"
  22. },
  23. "homepage": "https://github.com/ljharb/es-array-method-boxes-properly#readme",
  24. "devDependencies": {
  25. "@ljharb/eslint-config": "^14.1.0",
  26. "eslint": "^6.4.0",
  27. "safe-publish-latest": "^1.1.3",
  28. "tape": "^4.11.0"
  29. }
  30. }