wishthis/node_modules/object.reduce/package.json

48 lines
1,007 B
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "object.reduce",
"description": "Reduces an object to a value that is the accumulated result of running each property in the object through a callback.",
"version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/object.reduce",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/object.reduce",
2022-02-23 16:41:13 +00:00
"bugs": {
"url": "https://github.com/jonschlinkert/object.reduce/issues"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"license": "MIT",
2022-02-23 16:41:13 +00:00
"files": [
"index.js"
],
2022-04-08 10:55:35 +00:00
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
2022-02-23 16:41:13 +00:00
"keywords": [
"object",
"reduce"
],
2022-04-08 10:55:35 +00:00
"dependencies": {
"for-own": "^1.0.0",
"make-iterator": "^1.0.0"
2022-02-23 16:41:13 +00:00
},
2022-04-08 10:55:35 +00:00
"devDependencies": {
"gulp-format-md": "^0.1.11",
"mocha": "^3.2.0"
2022-02-23 16:41:13 +00:00
},
2022-01-21 08:28:41 +00:00
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
2022-04-08 10:55:35 +00:00
}
2022-01-21 08:28:41 +00:00
}