-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
62 lines (62 loc) · 1.99 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
55
56
57
58
59
60
61
62
{
"name": "@degordian/avro-to-typescript",
"version": "2.2.3",
"description": "Package for converting Avro schema files (.avsc) to TypeScript class files",
"keywords": [
"avro",
"avro schemas",
"typescript",
"compiler",
"converter"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"avro-to-typescript": "./dist/src/cli.js"
},
"directories": {
"doc": "docs",
"dist": "dist",
"src": "src",
"test": "test"
},
"scripts": {
"start": "npm run build && node ./dist/src/index.js",
"build": "tsc",
"prepublishOnly": "npm run test && npm run generate-barrels",
"generate-barrels": "barrelsby --directory src/ --delete --include components src/interfaces --exclude base Avro/compression Avro/schema_registry",
"test": "npm run tslint & npm run mocha",
"tslint": "tslint --project tsconfig.json --format stylish",
"tslint-jenkins": "tslint --project tsconfig.json -o tslint.xml -t checkstyle",
"mocha": "mocha dist/test --reporter=nyan --recursive",
"travis:test": "npm run build && npm run test",
"premocha": "npm run build"
},
"author": "Degordian (https://www.degordian.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/degordian/avro-to-typescript/issues"
},
"homepage": "https://github.com/degordian/avro-to-typescript#readme",
"dependencies": {
"@types/args": "^3.0.0",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/fs-extra": "^5.0.3",
"@types/node": "^14.0.22",
"@types/schema-registry": "^1.17.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^6.1.0",
"fs-extra": "^5.0.0",
"schema-registry": "^1.17.0",
"typescript-memoize": "^1.0.0-alpha.3"
},
"devDependencies": {
"@degordian/avro-to-typescript": "latest",
"@degordian/standards": "^1.0.8",
"@degordian/testing-toolkit": "^1.0.18",
"mocha-typescript": "^1.1.16",
"tslint": "^6.1.2",
"typescript": "^2.9.1"
}
}