avro-to-json-schema
Version:
TypeScript code generator for Apache Avro types
58 lines (57 loc) • 1.48 kB
JSON
{
"name": "avro-to-json-schema",
"version": "0.1.0",
"description": "TypeScript code generator for Apache Avro types",
"main": "./lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"directories": {
"test": "test"
},
"scripts": {
"test-update": "jest -u",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhasselgren/avro-to-json-schema.git"
},
"readme": "README.md",
"types": "./lib/index.d.ts",
"keywords": [
"avro",
"typescript"
],
"author": "Joe Wood",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhasselgren/avro-to-json-schema/issues"
},
"homepage": "https://github.com/jhasselgren/avro-to-json-schema#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.3",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"dependencies": {
"@sinclair/typebox": "^0.20.5",
"lodash": "^4.17.21"
}
}