-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
34 lines (34 loc) · 912 Bytes
/
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
{
"name": "multisite-lighthouse-gcp",
"version": "0.0.1",
"description": "Run Lighthouse audits on URLs, and write the results daily into a BigQuery table.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sahava/multisite-lighthouse-gcp.git"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "NODE_ENV=test nyc --reporter=lcov ava --verbose ./test/*.test.js && nyc report"
},
"author": "Simo Ahava",
"license": "MIT",
"dependencies": {
"@google-cloud/bigquery": "^2.0.6",
"@google-cloud/pubsub": "^0.22.2",
"@google-cloud/storage": "^2.3.4",
"jsonschema": "^1.2.4",
"lighthouse": "^4.0.0",
"proxyquire": "^2.1.0",
"puppeteer": "1.11.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.1.0",
"ava": "^0.25.0",
"nyc": "^13.1.0",
"sinon": "^7.2.3"
}
}