source: trip-planner-front/node_modules/object.pick/package.json@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "object.pick",
3 "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.",
4 "version": "1.3.0",
5 "homepage": "https://github.com/jonschlinkert/object.pick",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "repository": "jonschlinkert/object.pick",
8 "bugs": {
9 "url": "https://github.com/jonschlinkert/object.pick/issues"
10 },
11 "license": "MIT",
12 "files": [
13 "index.js"
14 ],
15 "main": "index.js",
16 "engines": {
17 "node": ">=0.10.0"
18 },
19 "scripts": {
20 "test": "mocha"
21 },
22 "dependencies": {
23 "isobject": "^3.0.1"
24 },
25 "devDependencies": {
26 "gulp-format-md": "^1.0.0",
27 "mocha": "^3.1.2",
28 "vinyl": "^2.0.0"
29 },
30 "keywords": [
31 "object",
32 "pick"
33 ],
34 "verb": {
35 "run": true,
36 "toc": false,
37 "layout": "default",
38 "tasks": [
39 "readme"
40 ],
41 "plugins": [
42 "gulp-format-md"
43 ],
44 "related": {
45 "list": [
46 "extend-shallow",
47 "get-value",
48 "mixin-deep",
49 "set-value"
50 ],
51 "highlight": "object.omit"
52 },
53 "reflinks": [
54 "verb"
55 ],
56 "lint": {
57 "reflinks": true
58 }
59 }
60}
Note: See TracBrowser for help on using the repository browser.