-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 919 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
{
"name": "avrots",
"version": "0.0.1",
"description": "A DSL for simultaneously constructing an avro schema and the corresponding typescript type. Inspired by pelotom/runtypes and joewood/avro-typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/schicks/avrots"
},
"scripts": {
"test": "jest",
"build": "tsc",
"typecheck": "tsc --noEmit",
"precommit": "rm -rf dist && npm test && npm run build"
},
"keywords": [
"avro",
"typescript"
],
"author": "Sam Schick",
"license": "MIT",
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^14.6.0",
"@types/ramda": "^0.27.3",
"avsc": "^5.4.20",
"jest": "^25.2.4",
"prettier": "^2.0.5",
"ramda": "^0.27.0",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}