forked from googleapis/nodejs-firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@google-cloud/firestore",
"description": "Firestore Client Library for Node.js",
"version": "0.18.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.0.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"
],
"contributors": [
"Alexander Fenster <github@fenster.name>",
"Bond <bondz@users.noreply.github.com>",
"Jason Dobry <jdobry@google.com>",
"Luke Sneeringer <lukesneeringer@google.com>",
"Sebastian Schmidt <mrschmidt@google.com>",
"Stephen Sawchuk <sawchuk@gmail.com>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>"
],
"scripts": {
"codecov": "nyc report --reporter=json && codecov -f .coverage/*.json",
"predocs": "npm run compile",
"docs": "jsdoc -c .jsdoc.js",
"generate-scaffolding": "repo-tools generate all",
"system-test": "mocha build/system-test --timeout 600000",
"samples-test": "npm link && cd samples/ && npm link ../ && npm test && cd ../",
"conformance": "mocha build/conformance",
"test-only": "nyc mocha build/test",
"test": "npm run test-only",
"lint": "gts check",
"clean": "gts clean",
"compile": "tsc -p . && cp -r dev/protos build && cp -r dev/test/fake-certificate.json build/test/fake-certificate.json && cp dev/src/v1beta1/firestore_client_config.json build/src/v1beta1/ && cp dev/conformance/test-definition.proto build/conformance && cp dev/conformance/test-suite.binproto build/conformance",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest-only": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@google-cloud/projectify": "^0.3.0",
"bun": "^0.0.12",
"deep-equal": "^1.0.1",
"extend": "^3.0.1",
"functional-red-black-tree": "^1.0.1",
"google-gax": "^0.20.0",
"google-proto-files": "^0.17.0",
"is": "^3.2.1",
"lodash.merge": "^4.6.1",
"protobufjs": "^6.8.6",
"through2": "^2.0.3"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.5",
"@types/mocha": "^5.2.3",
"@types/node": "^10.3.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"duplexify": "^3.6.0",
"gts": "^0.7.1",
"hard-rejection": "^1.0.0",
"ink-docstrap": "git+https://github.com/docstrap/docstrap.git",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"proxyquire": "^2.0.1",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"typescript": "~3.1.1"
}
}