forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.68 KB
/
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
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
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"version": "0.0.1",
"private": true,
"license": "Apache-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": [
"rm",
"exec",
"cd",
"ls"
],
"ignore": [
"appengine/loopback",
"appengine/parse-server/cloud/main.js",
"**/node_modules/**",
"coverage"
]
},
"scripts": {
"check": "yarn check --strict-semver --integrity",
"lint": "samples lint",
"generate": "node ./scripts/generate",
"pretest": "npm run lint && node ./scripts/clean coverage",
"unit-test": "ava --verbose -T 30s functions/**/test/**/*.test.js",
"unit-cover": "nyc --cache npm test && nyc report --reporter=html",
"system-test": "ava --verbose -T 30s vision/system-test/**/*.test.js",
"system-cover": "nyc --cache npm run system-test && nyc report --reporter=html",
"test": "npm run unit-test && npm run system-test",
"cover": "nyc --cache npm run test && nyc report --reporter=html"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "1.4.14",
"@google-cloud/storage": "1.1.1",
"ava": "0.19.1",
"nyc": "10.3.2",
"shelljs": "0.7.7"
}
}