forked from ridi/object-case-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@ridi/object-case-converter",
"version": "2.0.4",
"description": "Convert keys in an javascript object for some cases(camelCase, snake_case, etc.)",
"main": "dist/camelize.js",
"types": "dist/camelize.d.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridi/object-case-converter.git"
},
"keywords": [
"converter",
"camelcase",
"snakecase"
],
"author": "Kyungmi Koong <kyungmi.k@ridi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ridi/object-case-converter/issues"
},
"homepage": "https://github.com/ridi/object-case-converter#readme",
"devDependencies": {
"@ridi/tslint-config": "0.1.0",
"@types/jest": "^22.0.1",
"@types/lodash": "^4.14.110",
"jest": "^23.2.0",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"typescript": "~2.8.1"
},
"dependencies": {
"lodash": "^4.17.10"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"lint": "tslint --config .tslintrc.js 'src/**/*.ts' --fix",
"test": "jest --no-cache",
"prepublishOnly": "npm run build"
}
}