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) · 986 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": ">=16.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/utils/generate.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"c8": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"gts": "^5.0.0",
"mocha": "^10.2.0",
"nunjucks": "^3.2.4",
"prettier": "^3.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^11.0.0"
}
}