grpc-js-core: make semver a prod dependency

semver is now used in index.ts, meaning that it needs to be
included in the "dependencies" section of the package.json,
otherwise deployments that use npm i --production will fail.
This commit is contained in:
cjihrig 2018-09-28 11:00:53 -04:00
parent 48e4048748
commit 2f6484f63d
No known key found for this signature in database
GPG Key ID: 7434390BDBE9B9C5
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,6 @@
"@types/node": "^10.5.4",
"clang-format": "^1.0.55",
"gts": "^0.5.1",
"semver": "^5.5.0",
"typescript": "~2.7.0"
},
"contributors": [
@ -42,7 +41,8 @@
"posttest": "npm run check"
},
"dependencies": {
"lodash": "^4.17.4"
"lodash": "^4.17.4",
"semver": "^5.5.0"
},
"files": [
"build/src/*.{js,d.ts}"