-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.89 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "identify-package-manager",
"version": "1.1.0",
"description": "Check the used package manager in a given repository (npm, yarn classic, yarn berry, pnpm, bun)",
"keywords": [
"npm",
"yarn",
"yarn berry",
"yarn classic",
"yarn 1",
"pnpm",
"package manager",
"lock file",
"detect",
"cli",
"monorepo"
],
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maks-io/identify-package-manager.git"
},
"author": "Markus Kurzmann <markus@kurzmann.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maks-io/identify-package-manager/issues"
},
"homepage": "https://github.com/maks-io/identify-package-manager#readme",
"type": "commonjs",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"identify-package-manager": "build/cli.js"
},
"dependencies": {
"identify-monorepo-root": "^1.1.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^25.5.2",
"husky": "^9.1.7",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.12.1",
"publishConfig": {
"provenance": true
},
"overrides": {
"braces": "^3.0.3",
"micromatch": {
".": "^4.0.8",
"picomatch": "^2.3.2"
},
"readdirp": {
"picomatch": "^2.3.2"
},
"npm": {
"brace-expansion": "^5.0.5",
"tinyglobby": {
"picomatch": "^4.0.4"
}
}
},
"scripts": {
"clean": "rimraf ./build ./coverage",
"transpile": "tsc -p tsconfig.json",
"build": "npm run clean && npm run transpile && node ./scripts/make-cli-executable.cjs",
"dev": "nodemon",
"verify": "npm run build && npm test",
"prepare": "node ./scripts/prepare.cjs",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"commit": "node ./scripts/commit.cjs",
"commitlint": "commitlint --from=HEAD~1 --to=HEAD",
"commitlint:edit": "commitlint --edit",
"release:core": "semantic-release",
"release:dry-run:core": "node ./scripts/release-dry-run.cjs",
"release:dry-run": "node ./scripts/release-runner.cjs --dry-run",
"release": "node ./scripts/release-runner.cjs"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/*.test.ts"
],
"clearMocks": true,
"restoreMocks": true
}
}