-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "lodash-humps",
"version": "3.1.6",
"description": "Recursive camelCase of object keys and arrays of objects",
"main": "lib/index.js",
"author": "Kai Curry <[email protected]> (http://www.cape.io/)",
"repository": "cape-io/lodash-humps",
"bugs": {
"url": "https://github.com/cape-io/lodash-humps/issues"
},
"keywords": [
"utils",
"camel",
"case",
"keys",
"underscore",
"converter",
"strings",
"lodash",
"objects"
],
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"prepublish": "npm run build",
"test-common": "tape test/common.js",
"test": "npm run build && babel-tape-runner test/**/*spec.js"
},
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-lodash": "^3.3.4",
"babel-tape-runner": "^3.0.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"tape": "^5.2.1"
}
}