-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.11 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
{
"name": "@cldmv/fix-headers",
"version": "1.3.9",
"description": "Multi-language project header normalizer with auto-detection and override support.",
"type": "module",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./types/index.d.mts",
"files": [
"index.mjs",
"index.cjs",
"src/",
"types/"
],
"exports": {
".": {
"types": "./types/index.d.mts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"./package.json": "./package.json"
},
"bin": {
"fix-headers": "./src/cli.mjs"
},
"scripts": {
"build:ci": "echo 'no build step: fix-headers ships source directly, see package.json files[]'",
"test": "vitest run --config .configs/vitest.config.mjs",
"test:watch": "vitest --config .configs/vitest.config.mjs",
"ci:coverage": "vitest run --coverage --reporter=dot --maxWorkers=1 --config .configs/vitest.ci.config.mjs",
"types:build": "tsc -p .configs/tsconfig.json --noCheck",
"types:check": "tsc -p .configs/tsconfig.json --noEmit",
"test:coverage": "vitest run --config .configs/vitest.config.mjs --coverage",
"cli": "node ./src/cli.mjs",
"build": "echo 'no build step - stopgap for CI coverage-badge; see tracking issue'"
},
"keywords": [
"headers",
"copyright",
"automation",
"node-module"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CLDMV/fix-headers.git"
},
"bugs": {
"url": "https://github.com/CLDMV/fix-headers/issues"
},
"homepage": "https://github.com/CLDMV/fix-headers#readme",
"peerDependencies": {
"vitest": ">=1.0.0"
},
"engines": {
"node": ">=20.19.0"
},
"author": {
"name": "Shinrai",
"company": "CLDMV",
"email": "git+npm@cldmv.net",
"url": "https://cldmv.net"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shinrai"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"sideEffects": false,
"devDependencies": {
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.8",
"typescript": "^7.0.2",
"vitest": "^4.1.8"
},
"dependencies": {
"ignore": "^7.0.5"
}
}