-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 983 Bytes
/
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": "avro-decorators",
"version": "1.1.2",
"description": "Typescript class decorators to model your avro schema",
"main": "build/index.js",
"bin": "build/bin/cli.js",
"engines": {
"node": ">=14"
},
"engineStrict": true,
"scripts": {
"test": "jest",
"build": "tsc -p ./tsconfig.build.json"
},
"keywords": [
"avro",
"typescript",
"decorators"
],
"author": "Thomas Wirth <thomas@wtho.de>",
"license": "MIT",
"dependencies": {
"avsc": "^5.7.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.0.0",
"@types/node": "^16.11.11",
"@types/yargs": "^17.0.0",
"execa": "^5.1.1",
"jest": "^27.4.3",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4"
}
}