-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "object-keys-normalizer",
"version": "1.0.1",
"description": "Deeply normalizes object keys (included nested objects and objects in arrays) to the format of your choosing.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"ava": {
"files": [
"./dist/tests/*.js",
"./dist/tests/**/*.js"
],
"concurrency": 4,
"failFast": true
},
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean; tsc",
"lint": "tslint 'src/**/*.ts?(x)'",
"prepublish": "npm run build",
"test": "npm run build && ava"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/xpepermint/object-keys-normalizer.git"
},
"bugs": {
"url": "/~https://github.com/xpepermint/object-keys-normalizer/issues"
},
"homepage": "/~https://github.com/xpepermint/object-keys-normalizer#readme",
"keywords": [
"object",
"objects",
"key",
"keys",
"normalize",
"normalizer",
"normalization",
"edit",
"change",
"camel",
"snake",
"upper",
"lower"
],
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"lodash.clonedeep": "4.5.0",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1"
}
}