source: imaps-frontend/node_modules/array.prototype.findlast/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.8 KB
Line 
1{
2 "name": "array.prototype.findlast",
3 "version": "1.2.5",
4 "description": "An ESnext spec-compliant `Array.prototype.findLast` shim/polyfill/replacement that works as far down as ES3.",
5 "author": {
6 "name": "Jordan Harband",
7 "email": "ljharb@gmail.com",
8 "url": "http://ljharb.codes"
9 },
10 "funding": {
11 "url": "https://github.com/sponsors/ljharb"
12 },
13 "contributors": [
14 {
15 "name": "Jordan Harband",
16 "email": "ljharb@gmail.com",
17 "url": "http://ljharb.codes"
18 }
19 ],
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/es-shims/Array.prototype.findLast/issues"
23 },
24 "homepage": "https://github.com/es-shims/Array.prototype.findLast#readme",
25 "main": "index.js",
26 "exports": {
27 ".": "./index.js",
28 "./auto": "./auto.js",
29 "./polyfill": "./polyfill.js",
30 "./implementation": "./implementation.js",
31 "./shim": "./shim.js",
32 "./package.json": "./package.json"
33 },
34 "scripts": {
35 "prepack": "npmignore --auto --commentLines=autogenerated",
36 "prepublishOnly": "safe-publish-latest",
37 "prepublish": "not-in-publish || npm run prepublishOnly",
38 "pretest": "npm run --silent lint && evalmd README.md",
39 "posttest": "aud --production",
40 "tests-only": "nyc tape 'test/**/*.js'",
41 "test": "npm run tests-only",
42 "lint": "eslint --ext=js,mjs .",
43 "postlint": "es-shim-api --bound",
44 "version": "auto-changelog && git add CHANGELOG.md",
45 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
46 },
47 "repository": {
48 "type": "git",
49 "url": "git+https://github.com/es-shims/Array.prototype.findLast.git"
50 },
51 "keywords": [
52 "Array.prototype.findLast",
53 "find",
54 "findLast",
55 "array",
56 "ESnext",
57 "shim",
58 "polyfill",
59 "last",
60 "es-shim API"
61 ],
62 "dependencies": {
63 "call-bind": "^1.0.7",
64 "define-properties": "^1.2.1",
65 "es-abstract": "^1.23.2",
66 "es-errors": "^1.3.0",
67 "es-object-atoms": "^1.0.0",
68 "es-shim-unscopables": "^1.0.2"
69 },
70 "devDependencies": {
71 "@es-shims/api": "^2.4.2",
72 "@ljharb/eslint-config": "^21.1.0",
73 "aud": "^2.0.4",
74 "auto-changelog": "^2.4.0",
75 "es-value-fixtures": "^1.4.2",
76 "eslint": "=8.8.0",
77 "evalmd": "^0.0.19",
78 "for-each": "^0.3.3",
79 "globalthis": "^1.0.3",
80 "has-strict-mode": "^1.0.1",
81 "hasown": "^2.0.2",
82 "in-publish": "^2.0.1",
83 "npmignore": "^0.3.1",
84 "nyc": "^10.3.2",
85 "object-inspect": "^1.13.1",
86 "safe-publish-latest": "^2.0.0",
87 "tape": "^5.7.5"
88 },
89 "testling": {
90 "files": [
91 "test/index.js",
92 "test/shimmed.js"
93 ]
94 },
95 "engines": {
96 "node": ">= 0.4"
97 },
98 "auto-changelog": {
99 "output": "CHANGELOG.md",
100 "template": "keepachangelog",
101 "unreleased": false,
102 "commitLimit": false,
103 "backfillLimit": false,
104 "hideCredit": true
105 },
106 "publishConfig": {
107 "ignore": [
108 ".github/workflows"
109 ]
110 }
111}
Note: See TracBrowser for help on using the repository browser.