-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.27 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@loopback/grpc",
"version": "0.2.0",
"description": "A gRPC extension for LoopBack Next",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean loopback-grpc*.tgz dist package api-docs *.tsbuildinfo",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"prettier:cli": "lb-prettier \"**/*.ts\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"posttest": "npm run lint",
"test:dev": "lb-mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback4-extension-grpc.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "Jonathan Casarrubias",
"email": "jcasarrubias@mean.expert",
"url": "https://github.com/mean-expert-official"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop/loopback4-extension-grpc/issues"
},
"homepage": "https://github.com/strongloop/loopback4-extension-grpc#readme",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"compilers",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/context": "^3.9.0",
"@loopback/core": "^2.8.0",
"@loopback/metadata": "^2.2.0",
"@loopback/repository": "^2.7.0",
"@loopback/rest": "^5.1.1",
"@mean-expert/protoc-ts": "0.0.2",
"debug": "^4.1.1",
"glob": "^7.1.6",
"grpc": "^1.24.3",
"protobufjs": "^6.9.0"
},
"devDependencies": {
"@loopback/build": "^5.4.3",
"@loopback/eslint-config": "^8.0.1",
"@loopback/testlab": "^3.1.7",
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.2",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-plugin": "^2.2.2",
"eslint-plugin-mocha": "^7.0.1"
}
}