-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "github-repo-tools",
"version": "2.6.0",
"description": "Useful tool to get versions (node or npm package) from repo(s) of Github user/org",
"main": "build/index.js",
"bin": {
"grt": "build/app.js"
},
"scripts": {
"clean": "rimraf ./build",
"build": "tsc",
"build:watch": "tsc -w",
"start": "ts-node ./src/app.ts",
"start:built": "node ./build/app.js",
"prepublish": "npm run clean && npm run build",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix"
},
"author": "Uladzimir Aleshka <[email protected]>",
"repository": {
"url": "https://github.com/lightness/github-repo-tools",
"type": "git"
},
"bugs": {
"url": "https://github.com/lightness/github-repo-tools/issues"
},
"license": "ISC",
"keywords": [
"github"
],
"dependencies": {
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.2.0",
"@octokit/plugin-retry": "^2.2.0",
"@octokit/rest": "^16.25.3",
"@yarnpkg/lockfile": "^1.1.0",
"bitbucket": "^2.6.3",
"chalk": "^2.4.2",
"change-case": "^3.1.0",
"cli-table3": "^0.5.1",
"commander": "^2.20.0",
"dotenv": "^8.0.0",
"figlet": "^1.2.1",
"inquirer": "^6.3.1",
"json2csv": "^5.0.6",
"json2md": "^1.10.0",
"lodash": "^4.17.11",
"lodash-decorators": "^6.0.1",
"moment": "^2.24.0",
"ora": "^3.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"yargs": "^13.2.4"
},
"engines": {
"node": ">= 8.16.0"
},
"devDependencies": {
"@types/node": "^12.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"yarn": "^1.22.10"
}
}