Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
{
|
|
"name": "asynckit",
|
|
"version": "0.4.0",
|
|
"description": "Minimal async jobs utility library, with streams support",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"clean": "rimraf coverage",
|
|
"lint": "eslint *.js lib/*.js test/*.js",
|
|
"test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec",
|
|
"win-test": "tape test/test-*.js",
|
|
"browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec",
|
|
"report": "istanbul report",
|
|
"size": "browserify index.js | size-table asynckit",
|
|
"debug": "tape test/test-*.js"
|
|
},
|
|
"pre-commit": [
|
|
"clean",
|
|
"lint",
|
|
"test",
|
|
"browser",
|
|
"report",
|
|
"size"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alexindigo/asynckit.git"
|
|
},
|
|
"keywords": [
|
|
"async",
|
|
"jobs",
|
|
"parallel",
|
|
"serial",
|
|
"iterator",
|
|
"array",
|
|
"object",
|
|
"stream",
|
|
"destroy",
|
|
"terminate",
|
|
"abort"
|
|
],
|
|
"author": "Alex Indigo <iam@alexindigo.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/alexindigo/asynckit/issues"
|
|
},
|
|
"homepage": "https://github.com/alexindigo/asynckit#readme",
|
|
"devDependencies": {
|
|
"browserify": "^13.0.0",
|
|
"browserify-istanbul": "^2.0.0",
|
|
"coveralls": "^2.11.9",
|
|
"eslint": "^2.9.0",
|
|
"istanbul": "^0.4.3",
|
|
"obake": "^0.1.2",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"pre-commit": "^1.1.3",
|
|
"reamde": "^1.1.0",
|
|
"rimraf": "^2.5.2",
|
|
"size-table": "^0.2.0",
|
|
"tap-spec": "^4.1.1",
|
|
"tape": "^4.5.1"
|
|
},
|
|
"dependencies": {}
|
|
}
|