forked from creditkarma/thrift-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "@statestitle/thrift-server-hapi",
"version": "0.20.1",
"description": "A Hapi server plugin for the Apache Thrift protocol",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist/main"
],
"keywords": [
"thrift",
"hapi",
"typescript",
"rpc",
"microservices",
"server",
"framework"
],
"scripts": {
"clean": "rimraf ./dist ./src/tests/generated",
"lint": "eslint --fix './src/**/*.ts'",
"prebuild": "npm run clean",
"build": "npm run lint && tsc",
"test": "npm run test:only",
"test:only": "echo 'No tests for thrift-server-hapi'; exit 0;"
},
"author": "Credit Karma",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StatesTitle/thrift-server/tree/master/packages/thrift-server-hapi"
},
"peerDependencies": {
"@hapi/hapi": ">=17.0.0 <21.0.0",
"@types/hapi__hapi": ">=17.0.0 <21.0.0"
},
"devDependencies": {
"@hapi/hapi": "^20.2.1",
"@types/hapi__hapi": "^20.0.10",
"@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",
"zipkin": "^0.22.0"
},
"publishConfig": {
"access": "public"
}
}