-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "express-normalize-keys",
"version": "0.0.4",
"description": "Express middleware to normalise all object keys to the same format.",
"main": "lib/normalize-keys.js",
"scripts": {
"test": "mocha spec --compilers js:babel-core/register --recursive",
"build": "babel src --out-dir lib",
"lint": "standard",
"prepublish": "npm run lint && npm run build"
},
"dependencies": {
"change-case": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"standard": "^7.1.2"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"expect",
"describe",
"it",
"beforeEach",
"afterEach",
"BufferedReader"
]
},
"babel": {
"presets": [
"babel-preset-es2015"
]
},
"repository": {
"type": "git",
"url": "git://github.com/bkspace/express-normalize-keys.git"
},
"keywords": [
"express",
"middleware",
"camelCase",
"normalize",
"normalise",
"pascalCase",
"snakeCase",
"object",
"keys",
"converter"
],
"author": "Sammy Isseyegh [[email protected]]",
"license": "MIT"
}