-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "@brainhubeu/license-auditor",
"version": "2.0.0-beta.1",
"description": "License Auditor helps you track and validate licenses inside your project. Prevents unwanted law complications. License Auditor includes a step in your pipeline and creates notifications about potential problems with used licenses. At the moment, a notification means a comment.",
"repository": {
"type": "git",
"url": "https://github.com/brainhubeu/license-auditor"
},
"author": {
"name": "Brainhub"
},
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"typecheck": "turbo run typecheck",
"prepare": "husky",
"cli": "ROOT_DIR=$(pwd) turbo run cli",
"cli:init": "ROOT_DIR=$(pwd) turbo run cli:init",
"dev:cli": "ROOT_DIR=$(pwd) turbo run dev:cli",
"dev:cli:init": "ROOT_DIR=$(pwd) turbo run dev:cli:init",
"test:coverage": "turbo run test:coverage",
"test:unit": "turbo run test:unit",
"test:upload-coverage": "cat packages/core/coverage/lcov.info | codecov",
"test:e2e": "turbo run test:e2e"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@tsconfig/recommended": "1.0.7",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"node-pty": "1.0.0",
"turbo": "2.1.3",
"typescript": "5.6.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"workspaces": ["packages/*", "tooling/*", "test"],
"bin": {
"license-auditor": "packages/cli/dist/cli.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"overrides": {
"pastel": {
"@inkjs/ui": {
"cli-spinners": "2.9.2"
}
}
}
}