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
86 lines (86 loc) · 3.1 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.1 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
{
"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": "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",
"sinon"
],
"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": {
"mocha": "mocha -R dot -t 120000 --require intelli-espower-loader test/_setup.js test/**/*.test.js",
"cover": "nyc mocha --cache -R dot -t 180000 --require intelli-espower-loader test/_setup.js test/**/*.test.js",
"deps_bigquery": "cd bigquery; npm i; cd ../",
"deps_computeengine": "cd computeengine; npm i; cd ../",
"deps_datastore": "cd datastore; npm i; cd ../",
"deps_debugger": "cd debugger; npm i; cd ../",
"deps_functions": "cd functions/uuid; npm i; cd ../..",
"deps_logging": "cd logging; npm i; cd ../",
"deps_monitoring": "cd monitoring; npm i; cd ../",
"deps_prediction": "cd prediction; npm i; cd ../",
"deps_pubsub": "cd pubsub; npm i; cd ../",
"deps_speech": "cd speech; npm i; cd ../",
"deps_storage": "cd storage; npm i; cd ../",
"deps_trace": "cd trace; npm i; cd ../",
"deps_vision": "cd vision; npm i; cd ../",
"lint": "semistandard \"**/*.js\"",
"pretest_geddy": "cd appengine/geddy; npm i geddy; GEDDY_SECRET=config/secrets.json; [[ -f $GEDDY_SECRET ]] || echo '{}' > $GEDDY_SECRET && node node_modules/.bin/geddy gen secret; cd ../..;",
"pretest": "npm run deps_trace; npm run deps_debugger; npm run deps_vision; npm run deps_computeengine; npm run deps_bigquery; npm run deps_datastore; npm run deps_monitoring; npm run deps_storage; npm run deps_pubsub; npm run deps_prediction; npm run deps_logging; npm run deps_functions; npm run deps_speech; npm run pretest_geddy;",
"report": "nyc report --reporter=lcov | codecov",
"report-html": "nyc report --reporter=html",
"test": "npm run lint && npm run cover"
},
"devDependencies": {
"async": "^1.5.2",
"codecov": "^1.0.1",
"intelli-espower-loader": "^1.0.1",
"mocha": "^2.5.3",
"nodejs-repo-tools": "git+https://github.com/GoogleCloudPlatform/nodejs-repo-tools.git#bbbb6035d77671eb053dbe6b6f0e3ff983f79639",
"nyc": "^6.4.4",
"power-assert": "^1.4.1",
"proxyquire": "^1.7.9",
"request": "^2.72.0",
"semistandard": "^8.0.0",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
}
}