summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json')
-rw-r--r--deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json54
1 files changed, 54 insertions, 0 deletions
diff --git a/deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json b/deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
new file mode 100644
index 0000000000..ba00482142
--- /dev/null
+++ b/deps/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "defaults",
+ "version": "1.0.0",
+ "description": "merge single level defaults over a config object",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/tmpvar/defaults.git"
+ },
+ "keywords": [
+ "config",
+ "defaults"
+ ],
+ "author": {
+ "name": "Elijah Insua",
+ "email": "tmpvar@gmail.com"
+ },
+ "license": "MIT",
+ "readmeFilename": "README.md",
+ "dependencies": {
+ "clone": "~0.1.5"
+ },
+ "devDependencies": {
+ "tap": "~0.4.0"
+ },
+ "readme": "# defaults\n\nA simple one level options merge utility\n\n## install\n\n`npm install defaults`\n\n## use\n\n```javascript\n\nvar defaults = require('defaults');\n\nvar handle = function(options, fn) {\n options = defaults(options, {\n timeout: 100\n });\n\n setTimeout(function() {\n fn(options);\n }, options.timeout);\n}\n\nhandle({ timeout: 1000 }, function() {\n // we're here 1000 ms later\n});\n\nhandle({ timeout: 10000 }, function() {\n // we're here 10s later\n});\n\n```\n\n## summary\n\nthis module exports a function that takes 2 arguments: `options` and `defaults`. When called, it overrides all of `undefined` properties in `options` with the clones of properties defined in `defaults`\n\nSidecases: if called with a falsy `options` value, options will be initialized to a new object before being merged onto.\n\n## license\n\nMIT",
+ "_id": "defaults@1.0.0",
+ "dist": {
+ "shasum": "3ae25f44416c6c01f9809a25fcdd285912d2a6b1",
+ "tarball": "http://registry.npmjs.org/defaults/-/defaults-1.0.0.tgz"
+ },
+ "_npmVersion": "1.1.65",
+ "_npmUser": {
+ "name": "tmpvar",
+ "email": "tmpvar@gmail.com"
+ },
+ "maintainers": [
+ {
+ "name": "tmpvar",
+ "email": "tmpvar@gmail.com"
+ }
+ ],
+ "directories": {},
+ "_shasum": "3ae25f44416c6c01f9809a25fcdd285912d2a6b1",
+ "_from": "defaults@^1.0.0",
+ "_resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.0.tgz",
+ "bugs": {
+ "url": "https://github.com/tmpvar/defaults/issues"
+ },
+ "homepage": "https://github.com/tmpvar/defaults"
+}