forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nodejs-docs-samples-spanner",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google Inc.",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=4.3.2"
},
"scripts": {
"lint": "samples lint",
"pretest": "npm run lint",
"test": "samples test run --cmd ava -- -T 5m --verbose system-test/*.test.js"
},
"dependencies": {
"@google-cloud/spanner": "0.7.1",
"yargs": "8.0.2"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "1.4.17",
"ava": "0.22.0",
"proxyquire": "1.8.0",
"sinon": "3.2.1"
},
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"product": "spanner",
"samples": [
{
"id": "schema",
"name": "Schema",
"file": "schema.js",
"docs_link": "https://cloud.google.com/spanner/docs",
"usage": "node schema.js --help"
},
{
"id": "crud",
"name": "CRUD",
"file": "crud.js",
"docs_link": "https://cloud.google.com/spanner/docs",
"usage": "node crud.js --help"
},
{
"id": "indexing",
"name": "Indexing",
"file": "indexing.js",
"docs_link": "https://cloud.google.com/spanner/docs",
"usage": "node indexing.js --help"
},
{
"id": "transaction",
"name": "Transactions",
"file": "transaction.js",
"docs_link": "https://cloud.google.com/spanner/docs",
"usage": "node transaction.js --help"
}
]
}
}