-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "lodash-clean",
"version": "2.2.3",
"description": "Remove object keys that have empty values.",
"main": "lib/index.js",
"author": "Kai Curry <[email protected]> (http://www.cape.io/)",
"repository": "cape-io/lodash-clean",
"bugs": {
"url": "https://github.com/cape-io/lodash-clean/issues"
},
"keywords": [
"lodash",
"clean",
"trim",
"compact",
"array",
"object"
],
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"dev": "",
"prepublish": "npm run build",
"test": "jest --watch"
},
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"jest": "^26.6.3"
}
}