redproof 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +29 -0
- package/package.json +26 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 schalermthai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# redproof
|
|
2
|
+
|
|
3
|
+
**This 0.0.0 release holds the name. It contains no code yet.**
|
|
4
|
+
|
|
5
|
+
Do not install it expecting a working package. There is no entry point.
|
|
6
|
+
|
|
7
|
+
## What redproof will be
|
|
8
|
+
|
|
9
|
+
A gate that works and a gate that is broken print the same thing. Both exit 0.
|
|
10
|
+
A reader cannot tell them apart.
|
|
11
|
+
|
|
12
|
+
`redproof` plants one edit on purpose, runs the check, and requires the check
|
|
13
|
+
to go red with the right words. Then it puts the file back and requires green
|
|
14
|
+
again.
|
|
15
|
+
|
|
16
|
+
This is mutation testing pointed at your gates. Ordinary mutation testing
|
|
17
|
+
points at your tests. The difference is the oracle. A mutation tool asks the
|
|
18
|
+
test suite. A red proof asks the gate.
|
|
19
|
+
|
|
20
|
+
## Status
|
|
21
|
+
|
|
22
|
+
The real package is written and it passes its own proofs. It is not published
|
|
23
|
+
yet. The first working release will be `0.6.0` or later.
|
|
24
|
+
|
|
25
|
+
Source: https://github.com/schalermthai/redproof
|
|
26
|
+
|
|
27
|
+
## Licence
|
|
28
|
+
|
|
29
|
+
MIT.
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "redproof",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Name reserved. redproof is a table-driven red-proof harness. This 0.0.0 release holds the name while the real package is finished.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "schalermthai",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"red-proof",
|
|
9
|
+
"mutation-testing",
|
|
10
|
+
"gate",
|
|
11
|
+
"verification",
|
|
12
|
+
"placeholder"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/schalermthai/redproof.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/schalermthai/redproof",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/schalermthai/redproof/issues"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
]
|
|
26
|
+
}
|