grpc-node/package.json

54 lines
1.3 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.4"
},
"keywords": [],
"author": {
"name": "Google Inc."
},
"license": "Apache-2.0",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.19",
"clang-format": "^1.0.53",
"del": "^3.0.0",
"google-ts-style": "latest",
"gulp": "^3.9.1",
"gulp-help": "^1.6.1",
"gulp-mocha": "^4.3.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.2.1",
"gulp-util": "^3.0.8",
"merge2": "^1.1.0",
"mocha": "^3.5.0",
"through2": "^2.0.3",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
},
"contributors": [
{
"name": "Google Inc."
}
],
"_id": "grpc-js@0.1.0",
"scripts": {
"build": "npm run compile",
"clean": "gulp clean",
"compile": "gulp 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",
"test": "gulp test"
},
"dependencies": {
"@types/async": "^2.0.41",
"async": "^2.5.0"
}
}