mirror of https://github.com/grpc/grpc-node.git
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "grpc-js-core",
|
|
"version": "0.1.0",
|
|
"description": "gRPC Library for Node - pure JS core",
|
|
"homepage": "https://grpc.io/",
|
|
"main": "build/src/index.js",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=8.4"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Google Inc."
|
|
},
|
|
"types": "src/index.ts",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.73",
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/node": "^8.0.25",
|
|
"clang-format": "^1.0.53",
|
|
"google-ts-style": "^0.2.0"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Google Inc."
|
|
}
|
|
],
|
|
"_id": "grpc-js-core@0.1.0",
|
|
"scripts": {
|
|
"build": "npm run compile",
|
|
"clean": "gulp clean",
|
|
"compile": "gulp js.core.compile",
|
|
"format": "clang-format -i -style=\"{Language: JavaScript, BasedOnStyle: Google, ColumnLimit: 80}\" src/*.ts test/*.ts",
|
|
"lint": "tslint -c node_modules/google-ts-style/tslint.json -p . -t codeFrame --type-check",
|
|
"prepare": "npm run build",
|
|
"test": "gulp test"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.4"
|
|
},
|
|
"files": [
|
|
"build/src/*.js"
|
|
]
|
|
}
|