forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 961 Bytes
/
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
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"private": true,
"scripts": {
"lint": "gts check",
"fix": "gts fix",
"test": "echo 'Please run tests in each sample directory.' && exit 1",
"generate-ci": "node .github/workflows/generate.js"
},
"devDependencies": {
"gts": "^3.1.0",
"nunjucks": "^3.2.3",
"typescript": "^4.6.4"
},
"dependencies": {
"@google-cloud/asset": "^4.5.0",
"@google-cloud/bigquery": "^6.0.3",
"@google-cloud/compute": "^3.6.0",
"@google-cloud/resource-manager": "^4.1.1",
"@google-cloud/storage": "^6.7.0",
"chai": "^4.3.7",
"express": "^4.18.2",
"mocha": "^10.1.0",
"uuid": "^9.0.0"
}
}