-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@heroku-cli/plugin-heroku-repo",
"description": "Heroku CLI plugin to manipulate the repo",
"version": "2.0.0",
"author": "Heroku",
"bugs": {
"url": "https://github.com/heroku/heroku-repo/issues"
},
"dependencies": {
"@heroku-cli/color": "2.0.1",
"@heroku-cli/command": "^11.4.0",
"@heroku-cli/notifications": "^1.2.5",
"@heroku/http-call": "^5.4.0",
"@oclif/core": "^2.16.0",
"bytes": "3.0.0",
"debug": "^4.4.0",
"smooth-progress": "1.1.0"
},
"devDependencies": {
"@heroku-cli/schema": "^2.0.0",
"@oclif/plugin-help": "^5",
"@types/bytes": "^3.1.4",
"@types/chai": "^4",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.1",
"@types/nock": "^11.1.0",
"@types/node": "^20.14.8",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"chai": "^4.4.1",
"eslint": "^7",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.1.0",
"nock": "^14.0.0",
"nyc": "^17.1.0",
"oclif": "^4.17.13",
"proxyquire": "^2.1.0",
"sinon": "^19.0.2",
"stdout-stderr": "^0.1.13",
"strip-ansi": "^6",
"ts-node": "^10.9.1",
"tsheredoc": "^1.0.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">= 20"
},
"homepage": "https://github.com/heroku/heroku-repo",
"keywords": [
"heroku-plugin",
"oclif"
],
"files": [
"/dist"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"oclif": {
"commands": "./dist/commands",
"bin": "heroku",
"topics": {
"slugs": {
"description": "Heroku CLI plugin to manipulate the repo"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-repo.git"
},
"scripts": {
"build": "rm -rf dist && tsc -b && oclif manifest && oclif readme && mv oclif.manifest.json ./dist/oclif.manifest.json && cp README.md ./dist/README.md",
"lint": "eslint . --ext .ts --config .eslintrc",
"posttest": "npm run lint",
"prepare": "yarn build",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"test:local": "nyc mocha \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}