Skip to content

Commit cd7887f

Browse files
chore: sort package.json (#612)
* sort package.json * update grpc version
1 parent d543aa6 commit cd7887f

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

package.json

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
{
22
"name": "@google-cloud/datastore",
3-
"description": "Cloud Datastore Client Library for Node.js",
43
"version": "5.0.6",
5-
"license": "Apache-2.0",
6-
"author": "Google LLC.",
7-
"engines": {
8-
"node": ">=8.10.0"
9-
},
10-
"repository": "googleapis/nodejs-datastore",
11-
"main": "build/src/index.js",
12-
"files": [
13-
"build/proto",
14-
"build/protos",
15-
"build/src"
16-
],
4+
"description": "Cloud Datastore Client Library for Node.js",
175
"keywords": [
186
"google apis client",
197
"google api client",
@@ -26,30 +14,39 @@
2614
"google datastore",
2715
"datastore"
2816
],
17+
"repository": "googleapis/nodejs-datastore",
18+
"license": "Apache-2.0",
19+
"author": "Google LLC.",
20+
"main": "build/src/index.js",
21+
"files": [
22+
"build/proto",
23+
"build/protos",
24+
"build/src"
25+
],
2926
"scripts": {
30-
"test": "c8 mocha build/test",
31-
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
32-
"lint": "gts fix && eslint samples/*.js",
33-
"fix": "gts fix && eslint '**/*.js' --fix",
27+
"clean": "gts clean",
3428
"compile": "tsc -p . && cp -r proto* build/",
3529
"compile-protos": "compileProtos src",
36-
"prepare": "npm run compile",
3730
"docs": "jsdoc -c .jsdoc.js",
31+
"predocs-test": "npm run docs",
32+
"docs-test": "linkinator docs",
33+
"fix": "gts fix && eslint '**/*.js' --fix",
34+
"prelint": "cd samples; npm link ../; npm i",
35+
"lint": "gts fix && eslint samples/*.js",
36+
"prepare": "npm run compile",
37+
"proto": "npm run proto:datastore && npm run proto:appenginekey",
38+
"proto:appenginekey": "mkdir -p proto && pbjs -t static-module -w commonjs protos/app_engine_key.proto | pbts -o proto/app_engine_key.d.ts -",
39+
"proto:datastore": "mkdir -p proto && pbjs -t static-module -w commonjs -p node_modules/google-proto-files google/datastore/v1/datastore.proto | pbts -i long -o proto/datastore.d.ts -",
40+
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
3841
"presystem-test": "npm run compile",
3942
"system-test": "mocha build/system-test --timeout 600000",
40-
"clean": "gts clean",
4143
"pretest": "npm run compile",
42-
"proto": "npm run proto:datastore && npm run proto:appenginekey",
43-
"proto:datastore": "mkdir -p proto && pbjs -t static-module -w commonjs -p node_modules/google-proto-files google/datastore/v1/datastore.proto | pbts -i long -o proto/datastore.d.ts -",
44-
"proto:appenginekey": "mkdir -p proto && pbjs -t static-module -w commonjs protos/app_engine_key.proto | pbts -o proto/app_engine_key.d.ts -",
45-
"docs-test": "linkinator docs",
46-
"predocs-test": "npm run docs",
47-
"prelint": "cd samples; npm link ../; npm i"
44+
"test": "c8 mocha build/test"
4845
},
4946
"dependencies": {
5047
"@google-cloud/projectify": "^1.0.4",
5148
"@google-cloud/promisify": "^1.0.4",
52-
"@grpc/grpc-js": "0.7.0",
49+
"@grpc/grpc-js": "0.6.16",
5350
"@types/duplexify": "^3.6.0",
5451
"@types/long": "^4.0.1",
5552
"arrify": "^2.0.1",
@@ -62,41 +59,44 @@
6259
"stream-events": "^1.0.5"
6360
},
6461
"devDependencies": {
62+
"@types/extend": "^3.0.1",
63+
"@types/is": "0.0.21",
6564
"@types/mocha": "^7.0.2",
65+
"@types/mv": "^2.1.0",
66+
"@types/ncp": "^2.0.3",
6667
"@types/node": "^13.9.0",
67-
"gts": "^1.1.2",
68-
"null-loader": "^3.0.0",
69-
"pack-n-play": "^1.0.0-2",
70-
"power-assert": "^1.6.1",
71-
"ts-loader": "^6.2.1",
72-
"typescript": "^3.7.0",
73-
"webpack": "^4.42.0",
74-
"webpack-cli": "^3.3.11",
68+
"@types/proxyquire": "^1.3.28",
69+
"@types/sinon": "^7.5.2",
70+
"@types/tmp": "0.1.0",
71+
"assert-rejects": "^1.0.0",
7572
"c8": "^7.1.0",
7673
"codecov": "^3.6.5",
7774
"eslint": "^6.8.0",
7875
"eslint-config-prettier": "^6.10.0",
7976
"eslint-plugin-node": "^11.0.0",
8077
"eslint-plugin-prettier": "^3.1.2",
78+
"google-proto-files": "^1.1.2",
79+
"gts": "^1.1.2",
8180
"jsdoc": "^3.6.3",
8281
"jsdoc-fresh": "^1.0.2",
8382
"jsdoc-region-tag": "^1.0.4",
8483
"linkinator": "^2.0.3",
8584
"mocha": "^7.1.0",
86-
"prettier": "^1.19.1",
87-
"@types/extend": "^3.0.1",
88-
"@types/is": "0.0.21",
89-
"@types/mv": "^2.1.0",
90-
"@types/ncp": "^2.0.3",
91-
"@types/proxyquire": "^1.3.28",
92-
"@types/sinon": "^7.5.2",
93-
"@types/tmp": "0.1.0",
94-
"assert-rejects": "^1.0.0",
95-
"google-proto-files": "^1.1.2",
9685
"mv": "^2.1.1",
9786
"ncp": "^2.0.0",
87+
"null-loader": "^3.0.0",
88+
"pack-n-play": "^1.0.0-2",
89+
"power-assert": "^1.6.1",
90+
"prettier": "^1.19.1",
9891
"proxyquire": "^2.1.3",
9992
"sinon": "^9.0.0",
100-
"tmp": "0.1.0"
93+
"tmp": "0.1.0",
94+
"ts-loader": "^6.2.1",
95+
"typescript": "^3.7.0",
96+
"webpack": "^4.42.0",
97+
"webpack-cli": "^3.3.11"
98+
},
99+
"engines": {
100+
"node": ">=8.10.0"
101101
}
102102
}

0 commit comments

Comments
 (0)