forked from creditkarma/thrift-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.04 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
63
64
65
66
67
68
{
"name": "@statestitle/thrift-client",
"version": "0.20.1",
"description": "Thrift client library for NodeJS written in TypeScript.",
"main": "./dist/main/index.js",
"module": "./dist/esm/main/index.js",
"types": "./dist/main/index.d.ts",
"files": [
"dist/esm/main/**/*.js",
"dist/esm/main/**/*.js.map",
"dist/main/**/*.js",
"dist/main/**/*.d.ts"
],
"directories": {
"example": "example"
},
"keywords": [
"thrift",
"typescript",
"rpc",
"microservices",
"http client",
"framework"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint --fix './src/**/*.ts'",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && tsc --project tsconfig.esm.json",
"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/statestitle/thrift-server"
},
"devDependencies": {
"@hapi/code": "^8.0.7",
"@hapi/lab": "^24.6.0",
"@types/node": "^12.20.49",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"dependencies": {
"@statestitle/thrift-server-core": "^0.20.1",
"@types/generic-pool": "^3.1.10",
"@types/node-fetch": "^2.6.1",
"cross-fetch": "^3.1.5",
"generic-pool": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}