UNPKG

avro-typescript

Version:

TypeScript code generator for Apache Avro types

63 lines (62 loc) 1.62 kB
{ "name": "avro-typescript", "version": "1.3.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", "lint": "eslint", "build": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/joewood/avro-typescript.git" }, "readme": "README.md", "types": "./lib/index.d.ts", "keywords": [ "avro", "typescript" ], "author": "Joe Wood", "license": "MIT", "bugs": { "url": "https://github.com/joewood/avro-typescript/issues" }, "homepage": "https://github.com/joewood/avro-typescript#readme", "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.10.6", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "eslint": "^9.18.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.1", "jest": "^29.7.0", "prettier": "^3.4.2", "ts-jest": "^29.2.5", "typescript": "^5.7.3" }, "jest": { "preset": "ts-jest", "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js" ] }, "prettier": { "singleQuote": false, "tabWidth": 4, "printWidth": 120 } }