Edit File: package.json
{ "name": "@google-cloud/firestore", "description": "Firestore Client Library for Node.js", "version": "4.15.1", "license": "Apache-2.0", "author": "Google Inc.", "engines": { "node": ">=10.10.0" }, "repository": "googleapis/nodejs-firestore", "main": "./build/src/index.js", "types": "./types/firestore.d.ts", "files": [ "build/protos", "build/src", "!build/src/**/*.map", "types" ], "keywords": [ "google apis client", "google api client", "google apis", "google api", "google", "google cloud platform", "google cloud", "cloud", "firestore" ], "scripts": { "predocs": "npm run compile", "docs": "jsdoc -c .jsdoc.js", "system-test": "mocha build/system-test --timeout 600000", "presystem-test": "npm run compile", "samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../", "conformance": "mocha build/conformance", "preconformance": "npm run compile", "test-only": "c8 mocha build/test", "pretest-only": "npm run compile", "test": "npm run test-only && npm run conformance", "lint": "gts check", "clean": "gts clean", "compile": "tsc -p .", "postcompile": "node scripts/init-directories.js && cp -r dev/protos build && cp dev/src/v1beta1/*.json build/src/v1beta1/ && cp dev/src/v1/*.json build/src/v1/ && cp dev/conformance/test-definition.proto build/conformance && cp dev/conformance/conformance-tests/*.json build/conformance/conformance-tests", "fix": "gts fix", "prepare": "npm run compile", "docs-test": "linkinator docs", "predocs-test": "npm run docs", "prelint": "cd samples; npm link ../; npm install", "precompile": "gts clean" }, "dependencies": { "fast-deep-equal": "^3.1.1", "functional-red-black-tree": "^1.0.1", "google-gax": "^2.24.1", "protobufjs": "^6.8.6" }, "devDependencies": { "@types/assert": "^1.4.0", "@types/chai": "^4.2.7", "@types/chai-as-promised": "^7.1.2", "@types/duplexify": "^3.5.0", "@types/extend": "^3.0.0", "@types/mocha": "^8.0.0", "@types/node": "^14.0.0", "@types/sinon": "^10.0.0", "@types/through2": "^2.0.34", "c8": "^7.0.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "codecov": "^3.6.1", "duplexify": "^4.0.0", "extend": "^3.0.2", "gts": "^3.0.0", "jsdoc": "^3.6.2", "jsdoc-fresh": "^1.0.2", "jsdoc-region-tag": "^1.0.2", "length-prefixed-json-stream": "^1.0.1", "linkinator": "^2.0.0", "mocha": "^7.0.0", "proxyquire": "^2.1.3", "sinon": "^11.0.0", "ts-node": "^10.0.0", "typescript": "3.8.3", "through2": "^4.0.0" } }
Back to File Manager