-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "change-case-object",
"version": "2.0.0",
"description": "Changes the case of all keys of an object",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha",
"coverage": "istanbul cover node_modules/.bin/_mocha --report html -- -R spec",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BinaryThumb/change-case-object.git"
},
"keywords": [
"camel",
"object",
"case",
"change",
"snake",
"param"
],
"author": "Johannes Stein",
"license": "MIT",
"bugs": {
"url": "https://github.com/BinaryThumb/change-case-object/issues"
},
"homepage": "https://github.com/BinaryThumb/change-case-object#readme",
"dependencies": {
"camel-case": "^1.2.0",
"param-case": "^1.1.1",
"snake-case": "^1.1.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"husky": "^0.10.2",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0"
}
}