forked from joewood/avro-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
53
54
{
"name": "@pandorascloud/avro-typescript",
"version": "0.0.6",
"description": "TypeSript code generator for Apache Avro types",
"main": "./lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandorascloud/avro-typescript.git"
},
"readme": "READMD.md",
"types": "./lib/index.d.ts",
"keywords": [
"avro",
"typescript"
],
"author": "Joe Wood",
"maintainers": [
"Davide Berdin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pandorascloud/avro-typescript/issues"
},
"homepage": "https://github.com/pandorascloud/avro-typescript#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^7.0.22",
"jest": "^25.2.4",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}