wishthis/node_modules/object.map/package.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "object.map",
"description": "Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.",
"version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/object.map",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Blaine Bublitz (https://twitter.com/BlaineBublitz)",
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"repository": "jonschlinkert/object.map",
2022-02-23 16:41:13 +00:00
"bugs": {
"url": "https://github.com/jonschlinkert/object.map/issues"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"license": "MIT",
"files": [
"index.js"
2022-02-23 16:41:13 +00:00
],
2022-04-08 10:55:35 +00:00
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
2022-01-21 08:28:41 +00:00
"dependencies": {
"for-own": "^1.0.0",
"make-iterator": "^1.0.0"
},
"devDependencies": {
"gulp-format-md": "^0.1.11",
"mocha": "^3.2.0"
},
"keywords": [
"map",
"object"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"arr-map",
"array-each",
"collection-map"
]
},
"lint": {
"reflinks": true
}
2022-04-08 10:55:35 +00:00
}
2022-01-21 08:28:41 +00:00
}