UNPKG

1.37 kBJSONView Raw
1{
2 "name": "object.omit",
3 "description": "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.",
4 "version": "3.0.0",
5 "homepage": "https://github.com/jonschlinkert/object.omit",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "contributors": [
8 "Federico Brigante (https://twitter.com/bfred_it)",
9 "Jon Schlinkert (http://twitter.com/jonschlinkert)"
10 ],
11 "repository": "jonschlinkert/object.omit",
12 "bugs": {
13 "url": "https://github.com/jonschlinkert/object.omit/issues"
14 },
15 "license": "MIT",
16 "files": [
17 "index.js"
18 ],
19 "main": "index.js",
20 "engines": {
21 "node": ">=0.10.0"
22 },
23 "scripts": {
24 "test": "mocha"
25 },
26 "dependencies": {
27 "is-extendable": "^1.0.0"
28 },
29 "devDependencies": {
30 "gulp-format-md": "^1.0.0",
31 "mocha": "^3.5.0"
32 },
33 "keywords": [
34 "clear",
35 "delete",
36 "key",
37 "object",
38 "omit",
39 "property",
40 "remove",
41 "value"
42 ],
43 "verb": {
44 "related": {
45 "list": [
46 "object.defaults",
47 "object.filter",
48 "object.pick",
49 "object.pluck",
50 "object.reduce"
51 ]
52 },
53 "toc": false,
54 "layout": "default",
55 "tasks": [
56 "readme"
57 ],
58 "plugins": [
59 "gulp-format-md"
60 ],
61 "lint": {
62 "reflinks": true
63 }
64 }
65}