grpc-node/package.json

42 lines
1.0 KiB
JSON

{
"name": "grpc-js",
"version": "0.1.0",
"description": "gRPC Library for Node - pure JS",
"homepage": "https://grpc.io/",
"main": "index.js",
"private": true,
"engines": {
"node": ">=8.3"
},
"keywords": [],
"author": {
"name": "Google Inc."
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^8.0.19",
"clang-format": "^1.0.53",
"google-ts-style": "latest",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.2.1",
"merge2": "^1.1.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
},
"contributors": [
{
"name": "Google Inc."
}
],
"_id": "grpc-js@0.1.0",
"scripts": {
"build": "npm run compile",
"clean": "rm -rf ./build/",
"compile": "tsc -p . --rootDir . --outDir build/",
"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"
}
}