-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.51 KB
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
{
"name": "@telefonica/check-spdx-headers",
"description": "Checks that files have the correct SPDX headers",
"version": "1.0.5",
"author": "Telefónica Innovación Digital",
"homepage": "https://github.com/Telefonica/check-spdx-headers",
"repository": {
"type": "git",
"url": "git+https://github.com/Telefonica/check-spdx-headers.git"
},
"bugs": {
"url": "https://github.com/Telefonica/check-spdx-headers/issues"
},
"keywords": [
"license",
"open-source",
"spdx",
"header",
"check",
"files",
"compliance",
"integrity"
],
"exports": {
".": "./dist/index.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"check:types": "npm run check:types:code && npm run check:types:test",
"check:types:code": "tsc --noEmit",
"check:types:test": "tsc --noEmit --project ./test/tsconfig.json",
"cspell": "cspell . ./.github/**/*.md",
"lint": "eslint .",
"lint:staged": "lint-staged",
"local-action": "local-action . src/main.ts .env",
"package": "ncc build src/index.ts --transpile-only -o dist --source-map --license licenses.txt && node ./script/post-package.js",
"prepare": "husky",
"test:unit": "jest --config jest.unit.config.js"
},
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "1.11.1",
"chalk": "5.3.0",
"glob": "11.0.0",
"indent-string": "5.0.0",
"spdx-satisfies": "6.0.0",
"strip-indent": "4.0.0",
"winston": "3.17.0",
"yaml": "2.6.1",
"zod": "3.24.1",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@eslint/json": "0.6.0",
"@eslint/markdown": "6.2.1",
"@github/local-action": "2.2.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/spdx-satisfies": "0.1.2",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"@vercel/ncc": "0.38.3",
"cspell": "8.15.5",
"dotenv": "16.4.5",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"replace-in-file": "8.2.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"lint-staged": {
"*.js": "eslint",
"*.mjs": "eslint",
"*.cjs": "eslint",
"*.json": "eslint",
"*.md": "eslint",
"*.*": "cspell --no-must-find-files"
}
}