-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 905 Bytes
/
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": "decamelize-keys-deep",
"version": "0.1.1",
"description": "Deeply convert the camelized keys of an object into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": "rxaviers/decamelize-keys-deep",
"keywords": [
"map",
"obj",
"object",
"key",
"keys",
"value",
"values",
"val",
"decamelize",
"decamelcase",
"camelcase",
"case",
"dash",
"hyphen",
"dot",
"underscore",
"separator",
"string",
"text",
"convert",
"deep",
"recursive"
],
"author": "Rafael Xavier de Souza <[email protected]>",
"license": "MIT",
"files": [
"index.js"
],
"dependencies": {
"decamelize": "^1.2.0",
"map-obj": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}