UNPKG

1.84 kBJSONView Raw
1{
2 "name": "dts-from-thrift",
3 "version": "1.2.3",
4 "description": "typescript,thrift,protobuf",
5 "main": "lib/index.js",
6 "scripts": {
7 "test:pb_new": "nyc -e=.ts --require ts-node/register mocha ./test/protobufNew/*.test.ts",
8 "test_old": "nyc -e=.ts --require ts-node/register mocha ./test/**/*.test.ts",
9 "test": "nyc -e=.ts --require ts-node/register mocha ./test/thriftNew/*.test.ts",
10 "cov": "nyc --reporter=text-lcov report > coverage.lcov && codecov",
11 "build": "rm -rf lib/&&npx tsc -p tsconfig.build.json",
12 "prepare": "npm run lint&&npm run build",
13 "lint": "eslint ./src/**/*.ts --fix"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git@github.com:LPegasus/dts-from-thrift.git"
18 },
19 "maintainers": [
20 {
21 "name": "nameliuqi",
22 "email": "nameliuqi@outlook.com"
23 },
24 {
25 "name": "lpegasus",
26 "email": "pegusas1@hotmail.com"
27 }
28 ],
29 "license": "ISC",
30 "devDependencies": {
31 "@types/chai": "^4.2.11",
32 "@types/debug": "^4.1.5",
33 "@types/fs-extra": "^9.0.6",
34 "@types/glob": "^7.1.3",
35 "@types/mocha": "^8.0.0",
36 "@types/prettier": "^2.0.2",
37 "@types/rimraf": "^3.0.0",
38 "@typescript-eslint/eslint-plugin": "^4.14.0",
39 "@typescript-eslint/parser": "^4.14.0",
40 "chai": "^4.2.0",
41 "codecov": "^3.8.0",
42 "eslint": "^7.18.0",
43 "mocha": "^8.1.3",
44 "nyc": "^15.1.0",
45 "ts-node": "^9.1.1",
46 "typescript": "^4.1.3"
47 },
48 "dependencies": {
49 "chalk": "^4.1.0",
50 "commander": "^6.0.0",
51 "debug": "^4.1.1",
52 "fs-extra": "^9.0.1",
53 "glob": "^7.1.6",
54 "prettier": "^2.0.5",
55 "protobufjs": "^6.10.1",
56 "rimraf": "^3.0.2",
57 "tslib": "^2.0.0"
58 },
59 "files": [
60 "lib",
61 "bin"
62 ],
63 "bin": {
64 "dts-from-thrift": "./bin/dts-from-thrift",
65 "dts-from-protobuf": "./bin/dts-from-protobuf"
66 }
67}