-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 929 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
{
"name": "deep-camel",
"version": "1.0.1",
"description": "Recursively changes all key values in a JS object to camelCase or decamelizes them.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/_mocha",
"build": "babel-node ./node_modules/.bin/gulp build"
},
"repository": {
"type": "git",
"url": "https://www.github.com/veyo-care/deep-camel"
},
"keywords": [
"CamelCase",
"camel case",
"objects",
"deep",
"json",
"recursive"
],
"author": "Maximilian Greschke",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"chai": "^3.2.0",
"deep-equal": "^1.0.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-jshint": "^1.11.2",
"gulp-util": "^3.0.6",
"mocha": "^2.3.2"
},
"dependencies": {
"camelcase": "^1.2.1",
"decamelize": "^1.0.0"
}
}