forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1008 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
37
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=18.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": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"c8": "^10.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"gts": "5.3.0",
"mocha": "^10.2.0",
"nunjucks": "^3.2.4",
"prettier": "^3.0.3",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^12.0.0",
"eslint": "^8.57.0"
}
}