forked from MH4GF/dependency-cruiser-report-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "dependency-cruiser-report-action",
"version": "2.3.1",
"private": true,
"description": "visualize dependenices of changed files in each pull request.",
"keywords": [
"actions",
"node",
"setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MH4GF/dependency-cruiser-report-action.git"
},
"license": "MIT",
"author": "",
"main": "lib/main.js",
"scripts": {
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"build": "tsc",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "run-s lint:*",
"lint:eslint": "eslint src",
"lint:prettier": "prettier --check .",
"package": "ncc build src/main.ts --source-map --license licenses.txt",
"prepare": "husky install",
"test": "vitest"
},
"lint-staged": {
"*.ts": [
"pnpm run lint:eslint",
"pnpm run format"
]
},
"prettier": "@mh4gf/configs/prettier",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@mh4gf/configs": "^0.3.0",
"@mh4gf/eslint-config": "0.5.0",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^20.8.0",
"@vercel/ncc": "^0.36.1",
"dependency-cruiser": "15.4.0",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"vitest": "^0.32.0"
}
}