-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.62 KB
/
Copy pathpackage.json
File metadata and controls
163 lines (163 loc) · 4.62 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "@eliware/test",
"version": "8.0.0",
"description": "Shared deterministic repository validation for Eliware projects",
"keywords": [
"eliware",
"testing",
"validation",
"jest",
"oxlint",
"prettier",
"cli"
],
"author": "Eliware <eliware@eliware.org>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=26 <27"
},
"bin": {
"eliware-test": "./bin/eliware-test.mjs"
},
"files": [
"bin",
"src",
"specs",
"docs",
"README.md",
"AGENTS.md",
"LICENSE",
"RELEASE_NOTES.md"
],
"repository": {
"type": "git",
"url": "https://github.com/eliware/test"
},
"bugs": {
"url": "https://github.com/eliware/test/issues"
},
"homepage": "https://github.com/eliware/test#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"private": false,
"scripts": {
"test": "node bin/eliware-test.mjs",
"lint": "node bin/eliware-test.mjs --lint",
"format": "node bin/eliware-test.mjs --format",
"format:check": "node bin/eliware-test.mjs --format-check",
"audit": "node bin/eliware-test.mjs --audit",
"pack": "node bin/eliware-test.mjs --pack"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"endOfLine": "lf"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.mjs"
],
"coverageReporters": [
"text",
"json-summary"
]
},
"dependencies": {
"@babel/parser": "^7.29.9",
"jest": "^30.5.2",
"oxlint": "^1.85.0",
"prettier": "3.9.9",
"yaml": "^2.8.1"
},
"eliware": {
"apply": [
"general",
"application",
"cli",
"npm-published"
],
"exempt": [
{
"ruleId": "E-1.3",
"reason": "@eliware/test must self-host its test command and directly declare Jest, Oxlint, and Prettier because it cannot install itself as its own development dependency and owns the validation stack.",
"approver": "Eli",
"approvalTimestamp": "2026-09-09T00:00:00Z",
"expiry": null
},
{
"ruleId": "E-1.20.17",
"reason": "@eliware/test self-hosts its local CLI with node bin/eliware-test.mjs because it cannot install itself as its own development dependency.",
"approver": "Eli",
"approvalTimestamp": "2026-09-13T00:00:00Z",
"expiry": null
},
{
"ruleId": "E-1.20.19",
"reason": "@eliware/test self-hosts its audit command with node bin/eliware-test.mjs --audit because it cannot install itself as its own development dependency.",
"approver": "Eli",
"approvalTimestamp": "2026-09-13T00:00:00Z",
"expiry": null
},
{
"ruleId": "E-1.140.1",
"reason": "@eliware/test self-hosts its pack command with node bin/eliware-test.mjs --pack because it cannot install itself as its own development dependency.",
"approver": "Eli",
"approvalTimestamp": "2026-09-13T00:00:00Z",
"expiry": null
}
],
"authority": {
"authoritativeFor": [
"Deterministic repository validation and the eliware-test CLI."
],
"notAuthoritativeFor": [
"Semantic review, release approval, or live operations."
]
},
"crosslinks": [
{
"path": "../docs/authority-map.json",
"relation": "relatedAuthority",
"authoritativeFor": "Cross-repository ownership and platform authority."
},
{
"path": "../conventions/specs/general.json",
"relation": "relatedAuthority",
"authoritativeFor": "Universal Eliware conventions enforced by this package."
},
{
"path": "../conventions/specs/application.json",
"relation": "relatedAuthority",
"authoritativeFor": "Application conventions enforced by this package."
},
{
"path": "../conventions/specs/cli.json",
"relation": "relatedAuthority",
"authoritativeFor": "CLI conventions enforced by this package."
},
{
"path": "../conventions/specs/npm-published.json",
"relation": "relatedAuthority",
"authoritativeFor": "npm publication conventions enforced by this package."
},
{
"path": "../operations/specs/directives.json",
"relation": "relatedAuthority",
"authoritativeFor": "Cross-cutting release, publication, and deployment procedures."
}
]
}
}