| 1 | {
|
|---|
| 2 | "name": "object.getownpropertydescriptors",
|
|---|
| 3 | "version": "2.1.9",
|
|---|
| 4 | "author": "Jordan Harband <ljharb@gmail.com>",
|
|---|
| 5 | "funding": {
|
|---|
| 6 | "url": "https://github.com/sponsors/ljharb"
|
|---|
| 7 | },
|
|---|
| 8 | "description": "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.",
|
|---|
| 9 | "license": "MIT",
|
|---|
| 10 | "main": "index.js",
|
|---|
| 11 | "scripts": {
|
|---|
| 12 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
|---|
| 13 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
|---|
| 14 | "prepublishOnly": "safe-publish-latest",
|
|---|
| 15 | "pretest": "npm run --silent lint",
|
|---|
| 16 | "test": "npm run --silent tests-only",
|
|---|
| 17 | "posttest": "npx npm@\">= 10.2\" audit --production",
|
|---|
| 18 | "tests-only": "nyc tape 'test/**/*.js'",
|
|---|
| 19 | "lint": "eslint --ext=js,mjs .",
|
|---|
| 20 | "postlint": "es-shim-api --bound",
|
|---|
| 21 | "version": "auto-changelog && git add CHANGELOG.md",
|
|---|
| 22 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|---|
| 23 | },
|
|---|
| 24 | "repository": {
|
|---|
| 25 | "type": "git",
|
|---|
| 26 | "url": "git://github.com/es-shims/object.getownpropertydescriptors.git"
|
|---|
| 27 | },
|
|---|
| 28 | "keywords": [
|
|---|
| 29 | "Object.getOwnPropertyDescriptors",
|
|---|
| 30 | "descriptor",
|
|---|
| 31 | "property descriptor",
|
|---|
| 32 | "ES8",
|
|---|
| 33 | "ES2017",
|
|---|
| 34 | "shim",
|
|---|
| 35 | "polyfill",
|
|---|
| 36 | "getOwnPropertyDescriptor",
|
|---|
| 37 | "es-shim API"
|
|---|
| 38 | ],
|
|---|
| 39 | "dependencies": {
|
|---|
| 40 | "array.prototype.reduce": "^1.0.8",
|
|---|
| 41 | "call-bind": "^1.0.8",
|
|---|
| 42 | "define-properties": "^1.2.1",
|
|---|
| 43 | "es-abstract": "^1.24.0",
|
|---|
| 44 | "es-object-atoms": "^1.1.1",
|
|---|
| 45 | "gopd": "^1.2.0",
|
|---|
| 46 | "safe-array-concat": "^1.1.3"
|
|---|
| 47 | },
|
|---|
| 48 | "devDependencies": {
|
|---|
| 49 | "@es-shims/api": "^2.5.1",
|
|---|
| 50 | "@ljharb/eslint-config": "^22.1.0",
|
|---|
| 51 | "auto-changelog": "^2.5.0",
|
|---|
| 52 | "encoding": "^0.1.13",
|
|---|
| 53 | "eslint": "^9.39.1",
|
|---|
| 54 | "functions-have-names": "^1.2.3",
|
|---|
| 55 | "has-strict-mode": "^1.1.0",
|
|---|
| 56 | "in-publish": "^2.0.1",
|
|---|
| 57 | "jiti": "^0.0.0",
|
|---|
| 58 | "mock-property": "^1.1.0",
|
|---|
| 59 | "npmignore": "^0.3.2",
|
|---|
| 60 | "nyc": "^10.3.2",
|
|---|
| 61 | "safe-publish-latest": "^2.0.0",
|
|---|
| 62 | "tape": "^5.9.0"
|
|---|
| 63 | },
|
|---|
| 64 | "testling": {
|
|---|
| 65 | "files": [
|
|---|
| 66 | "test/index.js",
|
|---|
| 67 | "test/shimmed.js"
|
|---|
| 68 | ],
|
|---|
| 69 | "browsers": [
|
|---|
| 70 | "iexplore/9.0..latest",
|
|---|
| 71 | "firefox/4.0..6.0",
|
|---|
| 72 | "firefox/15.0..latest",
|
|---|
| 73 | "firefox/nightly",
|
|---|
| 74 | "chrome/5.0..10.0",
|
|---|
| 75 | "chrome/20.0..latest",
|
|---|
| 76 | "chrome/canary",
|
|---|
| 77 | "opera/12.0..latest",
|
|---|
| 78 | "opera/next",
|
|---|
| 79 | "safari/5.0..latest",
|
|---|
| 80 | "ipad/6.0..latest",
|
|---|
| 81 | "iphone/6.0..latest",
|
|---|
| 82 | "android-browser/4.2"
|
|---|
| 83 | ]
|
|---|
| 84 | },
|
|---|
| 85 | "engines": {
|
|---|
| 86 | "node": ">= 0.4"
|
|---|
| 87 | },
|
|---|
| 88 | "auto-changelog": {
|
|---|
| 89 | "output": "CHANGELOG.md",
|
|---|
| 90 | "template": "keepachangelog",
|
|---|
| 91 | "unreleased": false,
|
|---|
| 92 | "commitLimit": false,
|
|---|
| 93 | "backfillLimit": false,
|
|---|
| 94 | "hideCredit": true,
|
|---|
| 95 | "startingVersion": "2.1.6"
|
|---|
| 96 | },
|
|---|
| 97 | "publishConfig": {
|
|---|
| 98 | "ignore": [
|
|---|
| 99 | ".github/workflows"
|
|---|
| 100 | ]
|
|---|
| 101 | }
|
|---|
| 102 | }
|
|---|