-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
52
{
"name": "avro-typescript",
"version": "1.2.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",
"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": "^26.0.13",
"@types/node": "^14.6.4",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}