This commit is contained in:
2021-11-21 11:18:28 +01:00
parent 7a358eb836
commit 230b10b2a3
9339 changed files with 892519 additions and 62 deletions

56
node_modules/collection-map/package.json generated vendored Normal file
View File

@@ -0,0 +1,56 @@
{
"name": "collection-map",
"description": "Returns an array of mapped values from an array or object.",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/collection-map",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/collection-map",
"bugs": {
"url": "https://github.com/jonschlinkert/collection-map/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"arr-map": "^2.0.2",
"for-own": "^1.0.0",
"make-iterator": "^1.0.0"
},
"devDependencies": {
"gulp-format-md": "^0.1.11",
"mocha": "^3.2.0"
},
"keywords": [
"collection",
"map"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"arr-flatten",
"arr-map",
"for-in",
"for-own"
]
},
"lint": {
"reflinks": true
}
}
}