@creditkarma/thrift-server-core
Version:
Thrift core library in TypeScript
56 lines (55 loc) • 1.78 kB
JSON
{
"name": "@creditkarma/thrift-server-core",
"version": "1.0.4",
"description": "Thrift core library in TypeScript",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist/main",
"NOTICE"
],
"keywords": [
"Thrift",
"TypeScript",
"RPC"
],
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint --fix './src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"codegen": "thrift-typescript --target thrift-server --rootDir ./src/tests --sourceDir ./thrift --outDir ./generated --library ../../../main",
"prebuild": "npm run clean && npm run codegen",
"build": "npm run lint && npm run format && tsc",
"pretest": "npm run build",
"test": "npm run test:only",
"test:only": "lab --timeout 15000 --verbose -l -S -P spec dist/tests/unit"
},
"author": "Credit Karma",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/creditkarma/thrift-server/tree/master/packages/thrift-server-core"
},
"devDependencies": {
"@creditkarma/thrift-typescript": "^3.7.6",
"@hapi/code": "^8.0.7",
"@hapi/lab": "^25.0.1",
"@types/hapi__code": "^8.0.1",
"@types/hapi__lab": "^18.1.0",
"@types/node": "^16.11.0",
"@types/rimraf": "2.0.2",
"prettier": "^1.18.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "4.6.x"
},
"dependencies": {
"@types/lodash": "^4.14.136",
"lodash": "^4.17.15"
},
"publishConfig": {
"access": "public"
}
}