-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
{
"name": "sizeup-cli",
"version": "0.4.15",
"description": "CLI wrapper for the sizeup library",
"author": "Ọlálérè Williams",
"bin": {
"sizeup": "./bin/run"
},
"homepage": "https://github.com/lerebear/sizeup-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "lerebear/sizeup-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^5.0.18",
"@oclif/plugin-warn-if-update-available": "^3.0.2",
"octokit": "^3.1.1",
"read": "^3.0.1",
"simple-git": "^3.20.0",
"sizeup-core": "^0.5.7"
},
"devDependencies": {
"@oclif/test": "^2.5.3",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.50",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3.0.0",
"mocha": "^11",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.0.0"
},
"oclif": {
"bin": "sizeup",
"dirname": "sizeup",
"default": ".",
"commands": {
"strategy": "single",
"target": "./dist/index.js"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 1,
"frequency": 1,
"frequencyUnit": "days"
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"engines": {
"node": ">=20.16.0"
},
"bugs": "https://github.com/lerebear/sizeup-cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}