source: frontend/node_modules/gopd/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[9af201e]1{
2 "name": "gopd",
3 "version": "1.2.0",
4 "description": "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./gOPD": "./gOPD.js",
9 "./package.json": "./package.json"
10 },
11 "sideEffects": false,
12 "scripts": {
13 "prepack": "npmignore --auto --commentLines=autogenerated",
14 "prepublishOnly": "safe-publish-latest",
15 "prepublish": "not-in-publish || npm run prepublishOnly",
16 "prelint": "tsc -p . && attw -P",
17 "lint": "eslint --ext=js,mjs .",
18 "postlint": "evalmd README.md",
19 "pretest": "npm run lint",
20 "tests-only": "tape 'test/**/*.js'",
21 "test": "npm run tests-only",
22 "posttest": "npx npm@'>=10.2' audit --production",
23 "version": "auto-changelog && git add CHANGELOG.md",
24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
25 },
26 "repository": {
27 "type": "git",
28 "url": "git+https://github.com/ljharb/gopd.git"
29 },
30 "keywords": [
31 "ecmascript",
32 "javascript",
33 "getownpropertydescriptor",
34 "property",
35 "descriptor"
36 ],
37 "author": "Jordan Harband <ljharb@gmail.com>",
38 "funding": {
39 "url": "https://github.com/sponsors/ljharb"
40 },
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/ljharb/gopd/issues"
44 },
45 "homepage": "https://github.com/ljharb/gopd#readme",
46 "devDependencies": {
47 "@arethetypeswrong/cli": "^0.17.0",
48 "@ljharb/eslint-config": "^21.1.1",
49 "@ljharb/tsconfig": "^0.2.0",
50 "@types/tape": "^5.6.5",
51 "auto-changelog": "^2.5.0",
52 "encoding": "^0.1.13",
53 "eslint": "=8.8.0",
54 "evalmd": "^0.0.19",
55 "in-publish": "^2.0.1",
56 "npmignore": "^0.3.1",
57 "safe-publish-latest": "^2.0.0",
58 "tape": "^5.9.0",
59 "typescript": "next"
60 },
61 "auto-changelog": {
62 "output": "CHANGELOG.md",
63 "template": "keepachangelog",
64 "unreleased": false,
65 "commitLimit": false,
66 "backfillLimit": false,
67 "hideCredit": true
68 },
69 "publishConfig": {
70 "ignore": [
71 ".github/workflows"
72 ]
73 },
74 "engines": {
75 "node": ">= 0.4"
76 }
77}
Note: See TracBrowser for help on using the repository browser.