-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "package-manager-alias-cli",
"version": "1.1.0",
"description": "One command to use any* package manager - a universal CLI that auto-detects and uses npm, yarn, pnpm, or bun",
"main": "pm.js",
"bin": {
"pm": "./pm.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run lint && npm run test",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:dry-run": "standard-version --dry-run"
},
"keywords": [
"package-manager",
"npm",
"yarn",
"pnpm",
"bun",
"cli",
"universal",
"alias",
"pm"
],
"author": "Leo Giovanetti <hello@leog.me>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"files": [
"pm.js"
],
"dependencies": {
"detect-package-manager": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leog/package-manager-cli.git"
},
"bugs": {
"url": "https://github.com/leog/package-manager-cli/issues"
},
"homepage": "https://github.com/leog/package-manager-cli#readme"
}