forked from googleapis/code-suggester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "code-suggester",
"description": "Library to propose code changes",
"version": "4.3.3",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=14.0.0"
},
"bin": {
"code-suggester": "./build/src/bin/code-suggester.js"
},
"repository": "googleapis/code-suggester",
"main": "build/src/index.js",
"module": "build/src/index.js",
"source": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"keywords": [
"google",
"google cloud platform",
"google cloud"
],
"scripts": {
"samples-test": "echo 😱",
"clean": "gts clean",
"compile": "tsc -p .",
"docs": "jsdoc -c .jsdoc.js",
"docs-test": "linkinator docs",
"fix": "gts fix",
"lint": "gts check",
"predocs-test": "npm run docs",
"prepare": "npm run compile",
"presystem-test": "npm run compile",
"system-test": "c8 mocha build/system-test",
"test": "c8 mocha build/test",
"pretest": "npm run compile"
},
"dependencies": {
"@octokit/rest": "^19.0.5",
"@types/yargs": "^16.0.0",
"async-retry": "^1.3.1",
"diff": "^5.0.0",
"glob": "^7.1.6",
"parse-diff": "^0.11.0",
"yargs": "^16.0.0"
},
"devDependencies": {
"@octokit/types": "^9.0.0",
"@types/async-retry": "^1.4.2",
"@types/diff": "^5.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.0",
"@types/sinon": "^10.0.0",
"c8": "^7.0.1",
"gts": "^3.1.0",
"jsdoc": "^4.0.0",
"jsdoc-region-tag": "^2.0.0",
"linkinator": "^4.0.0",
"mocha": "^9.2.2",
"nock": "^13.0.2",
"null-loader": "^4.0.0",
"pack-n-play": "^1.0.0-2",
"sinon": "^15.0.0",
"ts-loader": "^8.0.0",
"typescript": "^4.6.4",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
}
}