-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "git-sanitize",
"version": "2.0.2",
"description": "Git custom command that will do a full \"sanitize\" of a branch",
"keywords": [
"git",
"sanitize"
],
"homepage": "https://github.com/devpow112/git-sanitize#readme",
"bugs": {
"url": "https://github.com/devpow112/git-sanitize/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpow112/git-sanitize.git"
},
"license": "MIT",
"author": "Devon Powell <devon.f.powell@gmail.com>",
"bin": {
"git-sanitize": "dist/cli.js"
},
"files": [
"dist/**/*.js"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "babel --verbose --out-dir dist src",
"lint": "run-s -s lint:git lint:js lint:md",
"lint:js": "eslint",
"lint:md": "markdownlint . --ignore-path .gitignore",
"lint:git": "commitlint --from origin/main --to HEAD",
"lint:pkg": "sort-package-json --check",
"fix": "run-s -s fix:js fix:md fix:pkg",
"fix:js": "npm run -s lint:js -- --fix",
"fix:md": "npm run -s lint:md -- --fix",
"fix:pkg": "npm pkg fix && sort-package-json"
},
"dependencies": {
"lodash": "^4.17.21",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.5.0",
"@devpow112/babel-config": "^1.2.3",
"@devpow112/commitlint-config": "^2.0.3",
"@devpow112/eslint-config": "^3.0.2",
"@devpow112/semantic-release-config": "^3.0.0",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"markdownlint-cli": "^0.42.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"sort-package-json": "^2.10.1"
},
"engines": {
"node": ">=20"
},
"preferGlobal": true
}