You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.2 KiB

  1. {
  2. "name": "es-object-atoms",
  3. "version": "1.1.1",
  4. "description": "ES Object-related atoms: Object, ToObject, RequireObjectCoercible",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./RequireObjectCoercible": "./RequireObjectCoercible.js",
  9. "./isObject": "./isObject.js",
  10. "./ToObject": "./ToObject.js",
  11. "./package.json": "./package.json"
  12. },
  13. "sideEffects": false,
  14. "scripts": {
  15. "prepack": "npmignore --auto --commentLines=autogenerated",
  16. "prepublishOnly": "safe-publish-latest",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "pretest": "npm run lint",
  19. "test": "npm run tests-only",
  20. "tests-only": "nyc tape 'test/**/*.js'",
  21. "posttest": "npx npm@\">= 10.2\" audit --production",
  22. "prelint": "evalmd README.md",
  23. "lint": "eslint --ext=js,mjs .",
  24. "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  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+https://github.com/ljharb/es-object-atoms.git"
  31. },
  32. "keywords": [
  33. "javascript",
  34. "ecmascript",
  35. "object",
  36. "toobject",
  37. "coercible"
  38. ],
  39. "author": "Jordan Harband <ljharb@gmail.com>",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/ljharb/es-object-atoms/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/es-object-atoms#readme",
  45. "dependencies": {
  46. "es-errors": "^1.3.0"
  47. },
  48. "devDependencies": {
  49. "@ljharb/eslint-config": "^21.1.1",
  50. "@ljharb/tsconfig": "^0.2.3",
  51. "@types/tape": "^5.8.1",
  52. "auto-changelog": "^2.5.0",
  53. "eclint": "^2.8.1",
  54. "encoding": "^0.1.13",
  55. "eslint": "^8.8.0",
  56. "evalmd": "^0.0.19",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "safe-publish-latest": "^2.0.0",
  61. "tape": "^5.9.0",
  62. "typescript": "next"
  63. },
  64. "auto-changelog": {
  65. "output": "CHANGELOG.md",
  66. "template": "keepachangelog",
  67. "unreleased": false,
  68. "commitLimit": false,
  69. "backfillLimit": false,
  70. "hideCredit": true
  71. },
  72. "publishConfig": {
  73. "ignore": [
  74. ".github/workflows"
  75. ]
  76. },
  77. "engines": {
  78. "node": ">= 0.4"
  79. }
  80. }