camelize-ts
Version:
Recursive camel casing of object property names with proper typing
61 lines (60 loc) • 1.3 kB
JSON
{
"name": "camelize-ts",
"version": "3.0.0",
"description": "Recursive camel casing of object property names with proper typing",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --verbose",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": "kbrabrand/camelize-ts",
"author": {
"name": "Kristoffer Brabrand",
"email": "kristoffer@brabrand.no",
"url": "https://github.com/kbrabrand"
},
"license": "MIT",
"keywords": [
"camel-case",
"json",
"transform",
"typescript"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"jest": {
"collectCoverageFrom": [
"./*"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"clearMocks": true
}
}