source: imaps-frontend/node_modules/array.prototype.flatmap/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.7 KB
Line 
1{
2 "name": "array.prototype.flatmap",
3 "version": "1.3.2",
4 "author": {
5 "name": "Jordan Harband",
6 "email": "ljharb@gmail.com",
7 "url": "http://ljharb.codes"
8 },
9 "funding": {
10 "url": "https://github.com/sponsors/ljharb"
11 },
12 "contributors": [
13 {
14 "name": "Jordan Harband",
15 "email": "ljharb@gmail.com",
16 "url": "http://ljharb.codes"
17 }
18 ],
19 "description": "An ES2019 spec-compliant `Array.prototype.flatMap` shim/polyfill/replacement that works as far down as ES3.",
20 "license": "MIT",
21 "main": "index",
22 "scripts": {
23 "prepack": "npmignore --auto --commentLines=autogenerated",
24 "prepublishOnly": "safe-publish-latest",
25 "prepublish": "not-in-publish || npm run prepublishOnly",
26 "pretest": "npm run lint",
27 "test": "npm run tests-only",
28 "posttest": "aud --production",
29 "tests-only": "nyc tape 'test/**/*.js'",
30 "prelint": "evalmd README.md",
31 "lint": "eslint --ext=js,mjs .",
32 "postlint": "es-shim-api --bound",
33 "version": "auto-changelog && git add CHANGELOG.md",
34 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
35 },
36 "repository": {
37 "type": "git",
38 "url": "git://github.com/es-shims/Array.prototype.flatMap.git"
39 },
40 "keywords": [
41 "Array.prototype.flatMap",
42 "flatMap",
43 "array",
44 "ESnext",
45 "shim",
46 "polyfill",
47 "flatten",
48 "Array.prototype.flatten",
49 "es-shim API"
50 ],
51 "dependencies": {
52 "call-bind": "^1.0.2",
53 "define-properties": "^1.2.0",
54 "es-abstract": "^1.22.1",
55 "es-shim-unscopables": "^1.0.0"
56 },
57 "devDependencies": {
58 "@es-shims/api": "^2.4.2",
59 "@ljharb/eslint-config": "^21.1.0",
60 "aud": "^2.0.3",
61 "auto-changelog": "^2.4.0",
62 "covert": "^1.1.1",
63 "eslint": "=8.8.0",
64 "evalmd": "^0.0.19",
65 "for-each": "^0.3.3",
66 "has-strict-mode": "^1.0.1",
67 "in-publish": "^2.0.1",
68 "npmignore": "^0.3.0",
69 "nyc": "^10.3.2",
70 "object-inspect": "^1.12.3",
71 "safe-publish-latest": "^2.0.0",
72 "tape": "^5.6.6"
73 },
74 "testling": {
75 "files": [
76 "test/index.js",
77 "test/shimmed.js"
78 ],
79 "browsers": [
80 "iexplore/6.0..latest",
81 "firefox/3.0..6.0",
82 "firefox/15.0..latest",
83 "firefox/nightly",
84 "chrome/4.0..10.0",
85 "chrome/20.0..latest",
86 "chrome/canary",
87 "opera/10.0..latest",
88 "opera/next",
89 "safari/4.0..latest",
90 "ipad/6.0..latest",
91 "iphone/6.0..latest",
92 "android-browser/4.2"
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 "startingVersion": "1.3.1"
106 },
107 "publishConfig": {
108 "ignore": [
109 ".github/workflows"
110 ]
111 }
112}
Note: See TracBrowser for help on using the repository browser.