-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "omit-deep-lodash",
"description": "Omit object key/values recursively with lodash as only dependency.",
"version": "1.1.7",
"license": "MIT",
"homepage": "https://github.com/odynvolk/omit-deep-lodash",
"author": "Alexi Rahman (https://github.com/odynvolk)",
"repository": {
"type": "git",
"url": "https://github.com/odynvolk/omit-deep-lodash.git"
},
"bugs": {
"url": "https://odynvolk/omit-deep-lodash/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "npm run compile && mocha && eslint . --cache",
"compile": "gulp",
"prepublish": "npm run compile"
},
"dependencies": {
"lodash": "~4.17.21"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-core": "~6.26.3",
"babel-eslint": "~10.1.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-stage-1": "~6.24.1",
"chai": "~4.3.4",
"del": "~6.0.0",
"eslint": "~8.6.0",
"gulp": "~4.0.2",
"gulp-babel": "~7.0.1",
"mocha": "~9.1.3",
"mocha-cakes-2": "~3.3.0"
},
"keywords": [
"deep",
"omit",
"key",
"keys",
"delete",
"remove",
"object",
"prop",
"properties",
"values",
"lodash"
]
}