-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "@metrics-pli/exporter-bigquery",
"version": "0.16.0",
"description": "Google Big Query exporter for metrics-pli metrics.",
"main": "dist/index.js",
"license": "MIT",
"author": "Christian Froehlingsdorf <chris@5cf.de> (http://5cf.de)",
"repository": {
"url": "https://github.com/metrics-pli/bigquery-export.git"
},
"scripts": {
"build": "yarn ts:build",
"_start": "DEBUG=mpli:bqexport node dist/index.js",
"start": "yarn build && yarn _start",
"lint": "tslint -c tslint.json '**/*.ts'",
"fix": "tslint -c tslint.json --fix '**/*.ts'",
"ts:build": "rm -rf dist/ && tsc -p tsconfig.json",
"prepublishOnly": "yarn build",
"test": "yarn build && DEBUG=mpli:bqexport ./node_modules/.bin/_mocha --recursive --timeout 5000 --exit -R spec test/int"
},
"dependencies": {
"@google-cloud/bigquery": "~1.3.0",
"@metrics-pli/types": "~1.1.0",
"async": "~2.6.0",
"debug": "~3.1.0",
"uuid": "~3.2.1"
},
"devDependencies": {
"@types/node": "~9.6.6",
"mocha": "~5.1.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2"
},
"directories": {
"lib": "lib"
},
"keywords": [
"metrics",
"lighthouse",
"puppeteer",
"tests",
"chrome-headless",
"chrome",
"headless-browsers",
"bigquery",
"metrics",
"export"
]
}