-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.02 KB
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": "hermes-queue",
"version": "0.23.1",
"description": "Hermes is a modular framework for node.js to make gRPC APIs.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"compile": "npx proto-loader-gen-types --longs=String --enums=String --defaults --oneofs --grpcLib=grpc --outDir=proto/ proto/notes.proto",
"start:server": "node dist/server.js",
"build:lib": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"prepare": "husky install",
"eslint": "eslint '**/*' --fix --ext google --parser @typescript-eslint/parser --plugin @typescript-eslint",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"copy-files": "copyfiles -u 1 src/application/config/proto/**/*.proto dist/src/application/config/proto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerinn/hermes.git"
},
"keywords": [
"grpc",
"nodejs",
"typescript",
"api",
"mensageria",
"message-broker",
"message-queue",
"framework"
],
"author": "rogerinn | Zorazzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rogerinn/hermes/issues"
},
"homepage": "https://github.com/rogerinn/hermes#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"copyfiles": "^2.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.0",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"ts-jest": "^29.0.5",
"tsc-alias": "1.7.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.11"
}
}