-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "use-correct-pm",
"version": "1.2.0",
"description": "A simple check of the usage of the correct package manager.",
"keywords": [
"package-manager",
"node",
"config"
],
"homepage": "https://github.com/mheob/use-correct-pm",
"bugs": "https://github.com/mheob/use-correct-pm/issues",
"repository": {
"type": "git",
"url": "https://github.com/mheob/use-correct-pm"
},
"license": "MIT",
"author": "Alexander Böhm <[email protected]>",
"files": [],
"scripts": {
"postinstall": "is-ci || go-npm install",
"prepare": "husky",
"publish": "npm publish",
"sort-package-json": "bunx sort-package-json",
"preuninstall": "go-npm uninstall"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"package.json": "bunx sort-package-json"
},
"dependencies": {
"@go-task/go-npm": "^0.2.0",
"is-ci": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"publishConfig": {
"access": "public"
},
"goBinary": {
"name": "use-correct-pm",
"path": "./bin",
"url": "https://github.com/mheob/use-correct-pm/releases/download/v{{version}}/use-correct-pm_{{version}}_{{platform}}_{{arch}}.tar.gz"
}
}