1 | {
|
---|
2 | "name": "gopd",
|
---|
3 | "version": "1.0.1",
|
---|
4 | "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.",
|
---|
5 | "main": "index.js",
|
---|
6 | "exports": {
|
---|
7 | ".": "./index.js",
|
---|
8 | "./package.json": "./package.json"
|
---|
9 | },
|
---|
10 | "sideEffects": false,
|
---|
11 | "scripts": {
|
---|
12 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
---|
13 | "prepublishOnly": "safe-publish-latest",
|
---|
14 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
15 | "lint": "eslint --ext=js,mjs .",
|
---|
16 | "postlint": "evalmd README.md",
|
---|
17 | "pretest": "npm run lint",
|
---|
18 | "tests-only": "tape 'test/**/*.js'",
|
---|
19 | "test": "npm run tests-only",
|
---|
20 | "posttest": "aud --production",
|
---|
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+https://github.com/ljharb/gopd.git"
|
---|
27 | },
|
---|
28 | "keywords": [
|
---|
29 | "ecmascript",
|
---|
30 | "javascript",
|
---|
31 | "getownpropertydescriptor",
|
---|
32 | "property",
|
---|
33 | "descriptor"
|
---|
34 | ],
|
---|
35 | "author": "Jordan Harband <ljharb@gmail.com>",
|
---|
36 | "funding": {
|
---|
37 | "url": "https://github.com/sponsors/ljharb"
|
---|
38 | },
|
---|
39 | "license": "MIT",
|
---|
40 | "bugs": {
|
---|
41 | "url": "https://github.com/ljharb/gopd/issues"
|
---|
42 | },
|
---|
43 | "homepage": "https://github.com/ljharb/gopd#readme",
|
---|
44 | "dependencies": {
|
---|
45 | "get-intrinsic": "^1.1.3"
|
---|
46 | },
|
---|
47 | "devDependencies": {
|
---|
48 | "@ljharb/eslint-config": "^21.0.0",
|
---|
49 | "aud": "^2.0.1",
|
---|
50 | "auto-changelog": "^2.4.0",
|
---|
51 | "eslint": "=8.8.0",
|
---|
52 | "evalmd": "^0.0.19",
|
---|
53 | "in-publish": "^2.0.1",
|
---|
54 | "npmignore": "^0.3.0",
|
---|
55 | "safe-publish-latest": "^2.0.0",
|
---|
56 | "tape": "^5.6.1"
|
---|
57 | },
|
---|
58 | "auto-changelog": {
|
---|
59 | "output": "CHANGELOG.md",
|
---|
60 | "template": "keepachangelog",
|
---|
61 | "unreleased": false,
|
---|
62 | "commitLimit": false,
|
---|
63 | "backfillLimit": false,
|
---|
64 | "hideCredit": true
|
---|
65 | },
|
---|
66 | "publishConfig": {
|
---|
67 | "ignore": [
|
---|
68 | ".github/workflows"
|
---|
69 | ]
|
---|
70 | }
|
---|
71 | }
|
---|