This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
67 lines (67 loc) · 1.8 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
64
65
66
67
{
"name": "@justinbeckwith/sloth",
"version": "7.1.0",
"repository": "googleapis/sloth",
"description": "sloth is a CLI utility for measuring GitHub response SLOs.",
"bin": {
"sloth": "build/src/cli.js"
},
"files": [
"build/src"
],
"main": "build/src/sloth.js",
"types": "build/src/sloth.d.ts",
"scripts": {
"test": "c8 mocha build/test",
"lint": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"start": "node build/src/server.js",
"presystem-test": "npm run compile",
"system-test": "mocha build/system-test",
"docs": "compodoc src/",
"samples-test": "echo no sample tests 👻",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install"
},
"keywords": [],
"author": "Justin Beckwith",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/bigquery": "^6.0.0",
"@google-cloud/local-auth": "^2.0.0",
"@google-cloud/service-management": "^1.0.0",
"@googleapis/sheets": "^3.0.0",
"cli-table": "^0.3.11",
"csv-string": "^4.1.0",
"express": "^4.18.1",
"gaxios": "^5.0.0",
"meow": "^9.0.0",
"p-throttle": "^4.1.1",
"truncate": "^3.0.0",
"update-notifier": "^6.0.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@types/cli-table": "^0.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@types/sinon": "^10.0.11",
"@types/update-notifier": "^5.1.0",
"c8": "^7.11.3",
"gts": "^3.1.0",
"linkinator": "^4.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"sinon": "^15.0.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14.0.0"
}
}