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
130 lines (130 loc) · 3.71 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"contributors": [
{
"name": "Ace Nassri",
"email": "anassri@google.com"
},
{
"name": "Jerjou",
"email": "jerjou@google.com"
},
{
"name": "Jason Dobry",
"email": "jason.dobry@gmail.com"
},
{
"name": "Jon Wayne Parrott",
"email": "jonwayne@google.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it",
"assert",
"restoreConsole",
"run",
"runAsync",
"sinon",
"stubConsole",
"test",
"tryTest",
"uuid"
],
"ignore": [
"appengine/bower/public/bower_components",
"appengine/geddy",
"appengine/kraken",
"appengine/loopback",
"appengine/parse-server/cloud/main.js",
"appengine/sails",
"appengine/webpack/dist",
"**/node_modules/**",
"coverage"
]
},
"scripts": {
"lint": "semistandard",
"pretest": "npm run lint && ./scripts/clean",
"t": "ava -c 20 -T 30s",
"st": "ava -c 20 -T 180s",
"test": "npm run t -- --verbose test/**/*.test.js **/test/**/*.test.js",
"cover": "nyc --cache npm test && nyc report --reporter=html",
"system-test": "npm run st -- --verbose system-test/**/*.test.js **/system-test/**/*.test.js",
"system-cover": "npm run pretest && nyc --cache npm run system-test && nyc report --reporter=html",
"all-test": "npm run st -- --no-power-assert bigquery/system-test/*.test.js test/**/*.test.js **/test/**/*.test.js system-test/**/*.test.js **/system-test/**/*.test.js",
"all-cover": "npm run pretest && nyc --cache npm run all-test && nyc report --reporter=html",
"unify": "node scripts/unify"
},
"devDependencies": {
"@google-cloud/bigquery": "0.6.0",
"@google-cloud/compute": "0.4.0",
"@google-cloud/datastore": "0.6.0",
"@google-cloud/dns": "0.4.0",
"@google-cloud/language": "0.7.0",
"@google-cloud/logging": "0.6.0",
"@google-cloud/monitoring": "0.1.3",
"@google-cloud/pubsub": "0.7.0",
"@google-cloud/resource": "0.5.1",
"@google-cloud/speech": "0.5.0",
"@google-cloud/storage": "0.6.0",
"@google-cloud/translate": "0.6.0",
"@google-cloud/vision": "0.7.0",
"@google/cloud-debug": "0.9.1",
"@google/cloud-trace": "0.5.10",
"async": "2.1.4",
"ava": "0.17.0",
"body-parser": "1.15.2",
"botkit": "0.0.5",
"cookie-parser": "^1.4.3",
"debug": "^2.6.0",
"express": "4.14.0",
"fluent-logger": "2.2.0",
"googleapis": "16.1.0",
"moment": "2.17.1",
"morgan": "^1.7.0",
"multer": "^1.2.1",
"mysql": "2.12.0",
"natural": "0.4.0",
"nconf": "^0.8.4",
"node-record-lpcm16": "0.2.0",
"nodejs-repo-tools": "git+https://github.com/GoogleCloudPlatform/nodejs-repo-tools.git#bbbb6035d77671eb053dbe6b6f0e3ff983f79639",
"nodemailer": "2.7.0",
"nodemailer-smtp-transport": "2.7.2",
"nyc": "10.0.0",
"prompt": "1.0.0",
"proxyquire": "1.7.10",
"pug": "2.0.0-beta6",
"redis": "2.6.3",
"request": "2.79.0",
"request-promise": "4.1.1",
"semistandard": "9.2.1",
"sendgrid": "4.7.1",
"serve-favicon": "^2.3.2",
"shelljs": "0.7.5",
"sinon": "1.17.7",
"sqlite3": "3.1.8",
"supertest": "2.0.1",
"uuid": "3.0.1",
"winston": "^2.3.0",
"winston-gae": "^0.1.0",
"yargs": "6.6.0"
},
"optionalDependencies": {
"canvas": "1.6.2"
}
}