thrift-ts/package.json
2022-07-13 14:13:55 +03:00

49 lines
1.2 KiB
JSON

{
"name": "@vality/thrift-ts",
"version": "2.4.0",
"description": "parse .thrift file to .d.ts",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"test": "tsc test/* --outDir test-tmp && mocha",
"prettier": "prettier --write \"{,{src,test,bin}/**/}*.{ts,js,json}\""
},
"repository": {
"url": "https://github.com/valitydev/thrift-ts.git",
"type": "git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "Eric Time",
"license": "ISC",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/glob": "^7.1.0",
"@types/lodash": "^4.14.116",
"@types/mocha": "^2.2.48",
"@types/node": "^10.11.0",
"@types/prettier": "^1.13.2",
"@types/sinon": "^4.3.3",
"@types/yargs": "^12.0.0",
"chai": "^3.5.0",
"growl": "^1.10.5",
"mocha": "^3.5.3",
"sinon": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.6.2"
},
"bin": {
"@vality/thrift-ts": "bin/index.js"
},
"dependencies": {
"buffer": "^5.2.1",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"prettier": "^1.14.3",
"thrift-parser": "^0.4.2",
"yargs": "^12.0.2"
}
}