-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.15 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.15 KB
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
88
89
{
"name": "@heroku-cli/heroku-slugs",
"description": "Heroku CLI Plugin to manage and download slugs",
"version": "2.0.2",
"author": "Heroku",
"bugs": {
"url": "https://github.com/heroku/heroku-slugs/issues"
},
"dependencies": {
"@heroku-cli/color": "2.0.5",
"@heroku-cli/command": "^11.5.0",
"@heroku-cli/notifications": "1.2.6",
"@oclif/core": "^2.16.0",
"bytes": "^3.1.2",
"fs-extra": "^11.3.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/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.3",
"@types/sinon": "^21.0.1",
"@types/supports-color": "^8.1.3",
"chai": "^4.4.1",
"eslint": "^9.39.4",
"eslint-config-oclif": "^6.0.144",
"eslint-plugin-mocha": "^11.2.0",
"mocha": "^11.7.5",
"nock": "^14.0.0",
"nyc": "^17.1.0",
"oclif": "^4.23.0",
"sinon": "^21.1.2",
"stdout-stderr": "0.1.13",
"strip-ansi": "^6.0.1",
"ts-node": "^10.9.2",
"tsheredoc": "^1.0.1",
"typescript": "^5.8.2"
},
"engines": {
"node": ">= 20"
},
"files": [
"/dist",
"/oclif.manifest.json"
],
"keywords": [
"heroku-plugin",
"oclif"
],
"license": "ISC",
"main": "dist/index.js",
"mocha": {
"require": [
"test/init.js",
"ts-node/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 360000
},
"types": "dist/index.d.ts",
"oclif": {
"commands": "./dist/commands",
"bin": "heroku",
"topics": {
"slugs": {
"description": "manage and download slugs"
}
}
},
"repository": "heroku/heroku-slugs",
"scripts": {
"build": "rm -rf dist && tsc -b",
"lint": "eslint .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"resolutions": {
"serialize-javascript": "^7.0.5"
}
}