forked from Ethernodes-org/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 833 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
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"private": true,
"scripts": {
"lint": "eslint '**/*.js'",
"fix": "eslint --fix '**/*.js'",
"test": "echo 'Please run tests in each sample directory.' && exit 1"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"gts": "^2.0.0",
"prettier": "^2.0.0",
"requestretry": "^4.0.0",
"typescript": "^3.8.3"
}
}