-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.16 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
{
"name": "cherrypush",
"version": "2.3.2",
"description": "Cherry CLI to manage your technical debt via cherrypush.com 🍒",
"source": "./bin/cherry.ts",
"type": "module",
"bin": {
"cherry": "./dist/bin/cherry.js"
},
"files": [
"dist"
],
"scripts": {
"install:global": "npm install -g .",
"build": "tsc",
"cherry": "tsx ./bin/cherry.ts",
"prepare": "husky install && npm run build",
"bump": "npm version patch && npm publish",
"test:watch": "vitest watch",
"lint": "eslint . --ext .js,.ts",
"test": "sh test/fixtures/cleanup.sh && sh test/fixtures/setup.sh && vitest run",
"test:setup": "sh test/fixtures/setup.sh",
"test:cleanup": "sh test/fixtures/cleanup.sh",
"type-check": "tsc --noEmit",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/cherrypush/cherry-cli.git"
},
"author": {
"name": "Flavio Wuensche",
"email": "f.wuensche@gmail.com",
"url": "https://twitter.com/fwuensche"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fwuensche/cherry-cli/issues"
},
"homepage": "https://github.com/fwuensche/cherry-cli#readme",
"dependencies": {
"axios": "^1.2.3",
"codeowners": "^5.1.1",
"commander": "^10.0.0",
"dotenv": "^16.4.5",
"esbuild": "^0.20.0",
"find-up": "^6.3.0",
"glob": "^8.1.0",
"lodash": "^4.17.21",
"madge": "^8.0.0",
"minimatch": "^6.1.6",
"p-limit": "^4.0.0",
"semver": "^7.6.3",
"spinnies": "^0.5.1",
"true-case-path": "^2.2.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.7",
"@types/prompt": "^1.1.9",
"@types/semver": "^7.5.8",
"@types/spinnies": "^0.5.3",
"@typescript-eslint/eslint-plugin": "8.x.x",
"@typescript-eslint/parser": "8.x.x",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.js": "eslint --fix"
}
}