generated from boneskull/boneskull-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.72 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
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
{
"name": "nvmermind",
"version": "1.0.2",
"description": "Uninstall old versions of Node.js as installed by nvm",
"repository": {
"type": "git",
"url": "https://github.com/boneskull/nvmermind"
},
"author": "Christopher Hiller <[email protected]> (https://boneskull.com/)",
"license": "Apache-2.0",
"engines": {
"node": "^16.13.0 || ^18.0.0 || ^20.0.0 || ^=22.0.0"
},
"bin": {
"nvmermind": "./src/index.js"
},
"main": "./src/index.js",
"types": "./types/src/index.d.ts",
"files": [
"src",
"types"
],
"keywords": [
"nvm",
"node",
"nodejs",
"node.js",
"uninstall",
"clean",
"cleanup",
"version",
"versions"
],
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"husky": "husky install",
"lint": "run-p lint:sources lint:markdown",
"lint:commit": "commitlint",
"lint:eslint": "eslint .",
"lint:markdown": "markdownlint-cli2 README.md",
"lint:prettier": "prettier --check .",
"lint:sources": "run-p lint:eslint lint:prettier",
"lint:staged": "lint-staged",
"prepare": "run-p husky rebuild",
"rebuild": "run-s build clean",
"test": "smoker test:smoke",
"test:smoke": "npx mkdirp ./test/fixtures/versions/node; npx cross-env NVM_DIR=./test/fixtures node ."
},
"dependencies": {
"@humanwhocodes/env": "3.0.1",
"filesize": "10.1.6",
"get-folder-size": "4.0.0",
"kleur": "4.1.5",
"ora": "5.4.1",
"pluralize": "8.0.0",
"prompts": "2.4.2",
"semver": "7.6.3"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@tsconfig/node16": "16.1.1",
"@types/get-folder-size": "3.0.4",
"@types/node": "22.9.0",
"@types/pluralize": "0.0.33",
"@types/prompts": "2.4.9",
"@types/semver": "7.5.8",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-semistandard": "17.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"markdownlint-cli2": "0.14.0",
"midnight-smoker": "8.0.0",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-pkg": "0.18.1",
"typescript": "5.2.2"
},
"overrides": {
"kleur": "4.1.5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"markdownlint-cli2-fix"
],
"*.{ya?ml,md,json}": [
"prettier --write"
]
},
"prettier": {
"bracketSpacing": false,
"endOfLine": "auto",
"singleQuote": true,
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-jsdoc"
]
}
}