CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json114 linesDownload Raw Back to array.prototype.flat
1{2	"name": "array.prototype.flat",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.flat` shim/polyfill/replacement that works as far down as ES3.",20	"license": "MIT",21	"main": "index.js",22	"scripts": {23		"prepack": "npmignore --auto --commentLines=autogenerated",24		"prepublish": "not-in-publish || npm run prepublishOnly",25		"prepublishOnly": "safe-publish-latest",26		"pretest": "npm run --silent lint && evalmd README.md",27		"test": "npm run tests-only",28		"posttest": "aud --production",29		"tests-only": "nyc tape 'test/**/*.js'",30		"lint": "eslint --ext=js,mjs .",31		"postlint": "es-shim-api --bound",32		"version": "auto-changelog && git add CHANGELOG.md",33		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""34	},35	"repository": {36		"type": "git",37		"url": "git://github.com/es-shims/Array.prototype.flat.git"38	},39	"keywords": [40		"Array.prototype.flatten",41		"Array.prototype.flat",42		"flatten",43		"flat",44		"array",45		"ESnext",46		"shim",47		"polyfill",48		"flatMap",49		"Array.prototype.flatMap",50		"es-shim API"51	],52	"dependencies": {53		"call-bind": "^1.0.2",54		"define-properties": "^1.2.0",55		"es-abstract": "^1.22.1",56		"es-shim-unscopables": "^1.0.0"57	},58	"devDependencies": {59		"@es-shims/api": "^2.4.2",60		"@ljharb/eslint-config": "^21.1.0",61		"aud": "^2.0.3",62		"auto-changelog": "^2.4.0",63		"covert": "^1.1.1",64		"eslint": "=8.8.0",65		"evalmd": "^0.0.19",66		"function-bind": "^1.1.1",67		"has-strict-mode": "^1.0.1",68		"in-publish": "^2.0.1",69		"npmignore": "^0.3.0",70		"nyc": "^10.3.2",71		"object-inspect": "^1.12.3",72		"safe-publish-latest": "^2.0.0",73		"tape": "^5.6.6"74	},75	"testling": {76		"files": [77			"test/index.js",78			"test/shimmed.js"79		],80		"browsers": [81			"iexplore/6.0..latest",82			"firefox/3.0..6.0",83			"firefox/15.0..latest",84			"firefox/nightly",85			"chrome/4.0..10.0",86			"chrome/20.0..latest",87			"chrome/canary",88			"opera/10.0..latest",89			"opera/next",90			"safari/4.0..latest",91			"ipad/6.0..latest",92			"iphone/6.0..latest",93			"android-browser/4.2"94		]95	},96	"engines": {97		"node": ">= 0.4"98	},99	"auto-changelog": {100		"output": "CHANGELOG.md",101		"template": "keepachangelog",102		"unreleased": false,103		"commitLimit": false,104		"backfillLimit": false,105		"hideCredit": true,106		"startingVersion": "1.3.1"107	},108	"publishConfig": {109		"ignore": [110			".github/workflows"111		]112	}113}114