-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "@rightcapital/verdaccio-package-diff",
"version": "1.2.1",
"description": "A package diff plugin for Verdaccio",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/RightCapitalHQ/verdaccio-package-diff.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"scripts": {
"dev": "tsc --watch",
"build": "tsc --build tsconfig.build.json",
"lint": "pnpm run prettier:lint && pnpm run eslint:lint",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"eslint:lint": "eslint --max-warnings=0 .",
"eslint:fix": "eslint --max-warnings=0 --fix .",
"prettier:lint": "prettier --check .",
"prettier:fix": "prettier --write -l .",
"prepare": "husky install",
"change": "beachball change --no-commit",
"check": "beachball check"
},
"keywords": [
"verdaccio",
"package diff"
],
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"express": "4.18.2",
"jwt-decode": "4.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"@commitlint/cz-commitlint": "18.4.4",
"@rightcapital/eslint-config": "37.0.1",
"@rightcapital/prettier-config": "6.0.9",
"@types/express": "4.17.21",
"@types/node": "20",
"@verdaccio/types": "10.8.0",
"beachball": "2.39.0",
"commitizen": "4.3.0",
"eslint": "9.13.0",
"husky": "8.0.3",
"prettier": "3.1.1",
"typescript": "5.3.3"
}
}