-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.56 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
{
"type": "module",
"name": "@nikensss/sauna",
"description": "CLI tool to show the available updates for npm packages, sorted and colored by type. First come the patch updates, then the minor updated, and last come the major updates (according to Sem.Ver. conventions).",
"version": "1.3.6",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nikensss/sauna"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": "Ricard Mallafre",
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"prettier": "2.8.4",
"rimraf": "4.4.0",
"ts-node": "10.9.1",
"typescript": "5.0.2"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "exit 0",
"pretty": "prettier --write 'src/**/*.ts'",
"pretty:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"prepare": "husky install",
"prebuild": "rimraf ./dist",
"build": "tsc",
"inst": "npm run build && npm un -g @nikensss/sauna && npm i -g"
},
"bin": {
"sauna": "dist/index.js"
},
"dependencies": {
"chalk": "5.2.0",
"commander": "10.0.0",
"ora": "6.2.0",
"pino": "8.11.0",
"zod": "3.21.4"
},
"engines": {
"node": ">=16"
},
"license": "MIT"
}