-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "git-squash-branch",
"version": "0.0.0-semantic-release",
"description": "Squash commits in a Git branch or pull-request",
"keywords": [
"git",
"squash",
"branch"
],
"license": "MIT",
"repository": "privatenumber/git-squash-branch",
"funding": "https://github.com/privatenumber/git-squash-branch?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"type": "module",
"files": [
"dist"
],
"bin": "dist/index.cjs",
"scripts": {
"prepare": "simple-git-hooks",
"build": "pkgroll --minify --target=node12.19",
"lint": "eslint --cache .",
"test": "tsx tests",
"type-check": "tsc --noEmit",
"prepack": "pnpm build && clean-pkg-json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache"
},
"dependencies": {
"tasuku": "^2.0.1"
},
"devDependencies": {
"@clack/prompts": "^0.0.8",
"@pvtnbr/eslint-config": "^0.33.0",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.1",
"eslint": "^8.32.0",
"execa": "^6.1.0",
"fs-fixture": "^1.2.0",
"kolorist": "^1.6.0",
"lint-staged": "^13.1.0",
"manten": "^0.6.1",
"pkgroll": "^1.8.1",
"simple-git-hooks": "^2.8.1",
"terminal-link": "^3.0.0",
"tsx": "^3.12.2",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}