1 | {
|
2 | "name": "dts-from-thrift",
|
3 | "version": "1.1.4",
|
4 | "description": "typescript,thrift,protobuf",
|
5 | "main": "lib/index.js",
|
6 | "scripts": {
|
7 | "test_old": "nyc -e=.ts --require ts-node/register mocha ./test/**/*.test.ts",
|
8 | "test": "nyc -e=.ts --require ts-node/register mocha ./test/thriftNew/*.test.ts",
|
9 | "cov": "nyc --reporter=text-lcov report > coverage.lcov && codecov",
|
10 | "build": "rm -rf lib/&&npx tsc -p tsconfig.build.json",
|
11 | "prepare": "npm run lint&&npm run build",
|
12 | "lint": "eslint ./src/**/*.ts --fix"
|
13 | },
|
14 | "repository": {
|
15 | "type": "git",
|
16 | "url": "git@github.com:LPegasus/dts-from-thrift.git"
|
17 | },
|
18 | "author": "pegusas1@hotmail.com",
|
19 | "license": "ISC",
|
20 | "devDependencies": {
|
21 | "@types/chai": "^4.1.4",
|
22 | "@types/debug": "^0.0.30",
|
23 | "@types/fs-extra": "^5.0.4",
|
24 | "@types/glob": "^5.0.35",
|
25 | "@types/mocha": "^5.2.5",
|
26 | "@types/prettier": "^1.18.3",
|
27 | "@typescript-eslint/eslint-plugin": "^2.4.0",
|
28 | "@typescript-eslint/parser": "^2.4.0",
|
29 | "chai": "^4.1.2",
|
30 | "codecov": "^3.1.0",
|
31 | "eslint": "^6.8.0",
|
32 | "mocha": "^5.2.0",
|
33 | "nyc": "^13.1.0",
|
34 | "ts-node": "^7.0.1",
|
35 | "typescript": "^3.8.3"
|
36 | },
|
37 | "dependencies": {
|
38 | "@creditkarma/thrift-parser": "^1.1.5",
|
39 | "chalk": "^3.0.0",
|
40 | "commander": "^2.17.1",
|
41 | "debug": "^3.1.0",
|
42 | "fs-extra": "^7.0.0",
|
43 | "glob": "^7.1.2",
|
44 | "prettier": "^1.18.2",
|
45 | "protobufjs": "^6.8.8",
|
46 | "tslib": "^1.11.1"
|
47 | },
|
48 | "files": [
|
49 | "lib",
|
50 | "bin"
|
51 | ],
|
52 | "bin": {
|
53 | "dts-from-thrift": "./bin/dts-from-thrift",
|
54 | "dts-from-protobuf": "./bin/dts-from-protobuf"
|
55 | }
|
56 | }
|