|
1 | 1 | { |
2 | 2 | "name": "@google-cloud/datastore", |
3 | | - "description": "Cloud Datastore Client Library for Node.js", |
4 | 3 | "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", |
17 | 5 | "keywords": [ |
18 | 6 | "google apis client", |
19 | 7 | "google api client", |
|
26 | 14 | "google datastore", |
27 | 15 | "datastore" |
28 | 16 | ], |
| 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 | + ], |
29 | 26 | "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", |
34 | 28 | "compile": "tsc -p . && cp -r proto* build/", |
35 | 29 | "compile-protos": "compileProtos src", |
36 | | - "prepare": "npm run compile", |
37 | 30 | "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 ../", |
38 | 41 | "presystem-test": "npm run compile", |
39 | 42 | "system-test": "mocha build/system-test --timeout 600000", |
40 | | - "clean": "gts clean", |
41 | 43 | "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" |
48 | 45 | }, |
49 | 46 | "dependencies": { |
50 | 47 | "@google-cloud/projectify": "^1.0.4", |
51 | 48 | "@google-cloud/promisify": "^1.0.4", |
52 | | - "@grpc/grpc-js": "0.7.0", |
| 49 | + "@grpc/grpc-js": "0.6.16", |
53 | 50 | "@types/duplexify": "^3.6.0", |
54 | 51 | "@types/long": "^4.0.1", |
55 | 52 | "arrify": "^2.0.1", |
|
62 | 59 | "stream-events": "^1.0.5" |
63 | 60 | }, |
64 | 61 | "devDependencies": { |
| 62 | + "@types/extend": "^3.0.1", |
| 63 | + "@types/is": "0.0.21", |
65 | 64 | "@types/mocha": "^7.0.2", |
| 65 | + "@types/mv": "^2.1.0", |
| 66 | + "@types/ncp": "^2.0.3", |
66 | 67 | "@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", |
75 | 72 | "c8": "^7.1.0", |
76 | 73 | "codecov": "^3.6.5", |
77 | 74 | "eslint": "^6.8.0", |
78 | 75 | "eslint-config-prettier": "^6.10.0", |
79 | 76 | "eslint-plugin-node": "^11.0.0", |
80 | 77 | "eslint-plugin-prettier": "^3.1.2", |
| 78 | + "google-proto-files": "^1.1.2", |
| 79 | + "gts": "^1.1.2", |
81 | 80 | "jsdoc": "^3.6.3", |
82 | 81 | "jsdoc-fresh": "^1.0.2", |
83 | 82 | "jsdoc-region-tag": "^1.0.4", |
84 | 83 | "linkinator": "^2.0.3", |
85 | 84 | "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", |
96 | 85 | "mv": "^2.1.1", |
97 | 86 | "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", |
98 | 91 | "proxyquire": "^2.1.3", |
99 | 92 | "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" |
101 | 101 | } |
102 | 102 | } |
0 commit comments