-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "@ovotech/avro-ts-cli",
"description": "A cli to convert avro schemas into typescript interfaces",
"version": "3.6.0",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"author": "Ivan Kerin <[email protected]>",
"license": "Apache-2.0",
"bin": {
"avro-ts": "./scripts/avro-ts"
},
"repository": "[email protected]:ovotech/castle.git",
"homepage": "https://github.com/ovotech/castle/tree/main/packages/avro-ts-cli#readme",
"scripts": {
"avro-ts": "node -r ts-node/register src/cli.ts",
"build": "tsc --declaration",
"build:docs": "build-docs README.md",
"test": "jest test --runInBand",
"lint:prettier": "prettier --list-different {src,test}/**/*.ts",
"lint:eslint": "eslint '{src,test}/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint"
},
"jest": {
"preset": "../../jest.json"
},
"dependencies": {
"@ovotech/avro-ts": "^6.2.0",
"ansi-regex": "^5.0.0",
"chalk": "^4.1.0",
"commander": "^7.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}