-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.76 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"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": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"printWidth": 120
},
"overrides": {
"picomatch": "2.3.2",
"jest-util": {
"picomatch": "4.0.4"
},
"tinyglobby": {
"picomatch": "4.0.4"
}
}
}