109 lines
3.5 KiB
JSON
109 lines
3.5 KiB
JSON
|
{
|
||
|
"_from": "@grpc/grpc-js",
|
||
|
"_id": "@grpc/grpc-js@1.6.7",
|
||
|
"_inBundle": false,
|
||
|
"_integrity": "sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==",
|
||
|
"_location": "/@grpc/grpc-js",
|
||
|
"_phantomChildren": {},
|
||
|
"_requested": {
|
||
|
"type": "tag",
|
||
|
"registry": true,
|
||
|
"raw": "@grpc/grpc-js",
|
||
|
"name": "@grpc/grpc-js",
|
||
|
"escapedName": "@grpc%2fgrpc-js",
|
||
|
"scope": "@grpc",
|
||
|
"rawSpec": "",
|
||
|
"saveSpec": null,
|
||
|
"fetchSpec": "latest"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"#USER",
|
||
|
"/"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.7.tgz",
|
||
|
"_shasum": "4c4fa998ff719fe859ac19fe977fdef097bb99aa",
|
||
|
"_spec": "@grpc/grpc-js",
|
||
|
"_where": "C:\\projects\\blockchain\\lighting\\lapp-crash-course\\backend",
|
||
|
"author": {
|
||
|
"name": "Google Inc."
|
||
|
},
|
||
|
"bundleDependencies": false,
|
||
|
"contributors": [
|
||
|
{
|
||
|
"name": "Google Inc."
|
||
|
}
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"@grpc/proto-loader": "^0.6.4",
|
||
|
"@types/node": ">=12.12.47"
|
||
|
},
|
||
|
"deprecated": false,
|
||
|
"description": "gRPC Library for Node - pure JS implementation",
|
||
|
"devDependencies": {
|
||
|
"@types/gulp": "^4.0.6",
|
||
|
"@types/gulp-mocha": "0.0.32",
|
||
|
"@types/lodash": "^4.14.108",
|
||
|
"@types/mocha": "^5.2.6",
|
||
|
"@types/ncp": "^2.0.1",
|
||
|
"@types/pify": "^3.0.2",
|
||
|
"@types/semver": "^7.3.9",
|
||
|
"clang-format": "^1.0.55",
|
||
|
"execa": "^2.0.3",
|
||
|
"gts": "^2.0.0",
|
||
|
"gulp": "^4.0.2",
|
||
|
"gulp-mocha": "^6.0.0",
|
||
|
"lodash": "^4.17.4",
|
||
|
"madge": "^5.0.1",
|
||
|
"mocha-jenkins-reporter": "^0.4.1",
|
||
|
"ncp": "^2.0.0",
|
||
|
"pify": "^4.0.1",
|
||
|
"rimraf": "^3.0.2",
|
||
|
"semver": "^7.3.5",
|
||
|
"ts-node": "^8.3.0",
|
||
|
"typescript": "^3.7.2"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": "^8.13.0 || >=10.10.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"src/**/*.ts",
|
||
|
"build/src/**/*.{js,d.ts,js.map}",
|
||
|
"proto/*.proto",
|
||
|
"LICENSE",
|
||
|
"deps/envoy-api/envoy/api/v2/**/*.proto",
|
||
|
"deps/envoy-api/envoy/config/**/*.proto",
|
||
|
"deps/envoy-api/envoy/service/**/*.proto",
|
||
|
"deps/envoy-api/envoy/type/**/*.proto",
|
||
|
"deps/udpa/udpa/**/*.proto",
|
||
|
"deps/googleapis/google/api/*.proto",
|
||
|
"deps/googleapis/google/rpc/*.proto",
|
||
|
"deps/protoc-gen-validate/validate/**/*.proto"
|
||
|
],
|
||
|
"homepage": "https://grpc.io/",
|
||
|
"keywords": [],
|
||
|
"license": "Apache-2.0",
|
||
|
"main": "build/src/index.js",
|
||
|
"name": "@grpc/grpc-js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "npm run compile",
|
||
|
"check": "gts check src/**/*.ts",
|
||
|
"clean": "rimraf ./build",
|
||
|
"compile": "tsc -p .",
|
||
|
"fix": "gts fix src/*.ts",
|
||
|
"format": "clang-format -i -style=\"{Language: JavaScript, BasedOnStyle: Google, ColumnLimit: 80}\" src/*.ts test/*.ts",
|
||
|
"generate-test-types": "proto-loader-gen-types --keepCase --longs String --enums String --defaults --oneofs --includeComments --include-dirs test/fixtures/ -O test/generated/ --grpcLib ../../src/index test_service.proto",
|
||
|
"generate-types": "proto-loader-gen-types --keepCase --longs String --enums String --defaults --oneofs --includeComments --includeDirs proto/ --include-dirs test/fixtures/ -O src/generated/ --grpcLib ../index channelz.proto",
|
||
|
"lint": "npm run check",
|
||
|
"posttest": "npm run check && madge -c ./build/src",
|
||
|
"prepare": "npm run generate-types && npm run compile",
|
||
|
"pretest": "npm run generate-types && npm run generate-test-types && npm run compile",
|
||
|
"test": "gulp test"
|
||
|
},
|
||
|
"types": "build/src/index.d.ts",
|
||
|
"version": "1.6.7"
|
||
|
}
|