-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "camelcase-object-deep",
"version": "1.1.7",
"description": "Convert object keys recursivly to camelCase using lodash",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "ava test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanjukim/camelcase-object-deep.git"
},
"keywords": [
"obj",
"object",
"key",
"keys",
"camelcase",
"camel-case",
"camel",
"lodash",
"recurse",
"recursive",
"deep"
],
"author": {
"name": "Hanju Kim",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hanjukim/camelcase-object-deep/issues"
},
"homepage": "https://github.com/hanjukim/camelcase-object-deep#readme",
"peerDependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"ava": "^3",
"lodash": "^4.17.11"
}
}