This repository has been archived by the owner on Jan 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
68
69
70
71
72
73
{
"name": "@google/repo",
"version": "7.0.0",
"repository": "googleapis/github-repo-automation",
"description": "A tool for automating multiple GitHub repositories.",
"engines": {
"node": ">=14.0.0"
},
"bin": {
"repo": "build/src/cli.js"
},
"files": [
"build/src",
"!build/src/**/*.map"
],
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@types/command-line-usage": "^5.0.2",
"@types/tmp": "^0.2.3",
"async-mutex": "^0.5.0",
"chalk": "^5.0.1",
"command-line-usage": "^7.0.0",
"extend": "^3.0.2",
"gaxios": "^6.0.1",
"js-yaml": "^4.1.0",
"meow": "11.0.0",
"ora": "^6.1.2",
"p-queue": "^7.2.0",
"text-encoding-shim": "^1.0.5",
"tmp-promise": "^3.0.3",
"tweetsodium": "0.0.5"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/meow": "6.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "20.14.10",
"cheerio": "1.0.0-rc.12",
"pdfmake": "0.2.12",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.13",
"c8": "^9.0.0",
"gts": "^5.0.0",
"linkinator": "^3.0.2",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^3.0.0",
"jsdoc-region-tag": "^3.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"proxyquire": "^2.1.3",
"sinon": "^17.0.0",
"typescript": "5.1.6"
},
"scripts": {
"lint": "gts check",
"docs": "jsdoc -c .jsdoc.json",
"test": "c8 mocha build/test",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"samples-test": "mocha samples/system-test",
"system-test": "mocha build/system-test",
"presystem-test": "npm run compile",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"prelint": "cd samples; npm link ../; npm install",
"precompile": "gts clean"
}
}