source: imaps-frontend/node_modules/reflect.getprototypeof/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.4 KB
Line 
1{
2 "name": "reflect.getprototypeof",
3 "version": "1.0.6",
4 "description": "An ES2015 mostly-spec-compliant `Reflect.getPrototypeOf` sham/polyfill/replacement that works in as many engines as possible",
5 "main": "index.js",
6 "type": "commonjs",
7 "exports": {
8 ".": "./index.js",
9 "./auto": "./auto.js",
10 "./polyfill": "./polyfill.js",
11 "./implementation": "./implementation.js",
12 "./shim": "./shim.js",
13 "./package.json": "./package.json"
14 },
15 "scripts": {
16 "prepack": "npmignore --auto --commentLines=autogenerated",
17 "prepublish": "not-in-publish || npm run prepublishOnly",
18 "prepublishOnly": "safe-publish-latest",
19 "prelint": "evalmd README.md",
20 "lint": "eslint --ext=js,mjs .",
21 "postlint": "es-shim-api --bound",
22 "pretest": "npm run lint",
23 "tests-only": "nyc tape 'test/**/*.js'",
24 "test": "npm run tests-only",
25 "posttest": "aud --production",
26 "version": "auto-changelog && git add CHANGELOG.md",
27 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+https://github.com/es-shims/Reflect.getPrototypeOf.git"
32 },
33 "keywords": [
34 "Reflect.getPrototypeOf",
35 "Object.getPrototypeOf",
36 "proto",
37 "__proto__",
38 "[[Prototype]]",
39 "getPrototypeOf",
40 "ES5",
41 "shim",
42 "polyfill",
43 "es-shim API",
44 "browser"
45 ],
46 "author": "Jordan Harband <ljharb@gmail.com>",
47 "funding": {
48 "url": "https://github.com/sponsors/ljharb"
49 },
50 "license": "MIT",
51 "bugs": {
52 "url": "https://github.com/es-shims/Reflect.getPrototypeOf/issues"
53 },
54 "homepage": "https://github.com/es-shims/Reflect.getPrototypeOf",
55 "engines": {
56 "node": ">= 0.4"
57 },
58 "dependencies": {
59 "call-bind": "^1.0.7",
60 "define-properties": "^1.2.1",
61 "es-abstract": "^1.23.1",
62 "es-errors": "^1.3.0",
63 "get-intrinsic": "^1.2.4",
64 "globalthis": "^1.0.3",
65 "which-builtin-type": "^1.1.3"
66 },
67 "devDependencies": {
68 "@es-shims/api": "^2.4.2",
69 "@ljharb/eslint-config": "^21.1.0",
70 "aud": "^2.0.4",
71 "auto-changelog": "^2.4.0",
72 "eslint": "=8.8.0",
73 "evalmd": "^0.0.19",
74 "in-publish": "^2.0.1",
75 "npmignore": "^0.3.1",
76 "nyc": "^10.3.2",
77 "safe-publish-latest": "^2.0.0",
78 "tape": "^5.7.5"
79 },
80 "auto-changelog": {
81 "output": "CHANGELOG.md",
82 "template": "keepachangelog",
83 "unreleased": false,
84 "commitLimit": false,
85 "backfillLimit": false,
86 "hideCredit": true
87 },
88 "publishConfig": {
89 "ignore": [
90 ".github/workflows"
91 ]
92 }
93}
Note: See TracBrowser for help on using the repository browser.