-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 817 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 817 Bytes
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": "googleapis-samples",
"description": "The following samples show basic usage of various APIs.",
"repository": "google/google-api-nodejs-client",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=12.0.0"
},
"files": [
"**/*.js",
"!test/"
],
"scripts": {
"prepare": "cd typescript && tsc && cd ..",
"test": "mocha"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.0",
"express": "^4.17.1",
"googleapis": "^148.0.0",
"googleapis-common": "^7.0.0",
"nconf": "^0.12.0",
"open": "^8.0.0",
"server-destroy": "^1.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"execa": "^5.0.0",
"mocha": "^9.0.0",
"nock": "^13.0.0",
"proxyquire": "^2.1.3",
"typescript": "^4.6.4"
}
}