@flystorage/chaos
Version:
A storage adapter decorator with the ability to stage errors.
45 lines • 1.36 kB
JSON
{
"name": "@flystorage/chaos",
"type": "module",
"version": "1.1.0",
"dependencies": {
"@flystorage/file-storage": "^1.1.0"
},
"description": "A storage adapter decorator with the ability to stage errors.",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"compile": "rm -rf ./dist/ && concurrently npm:compile:* && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
"compile:esm": "tsc --outDir ./dist/esm/ --declaration false",
"compile:cjs": "tsc --outDir ./dist/cjs/ --declaration false --module commonjs --moduleResolution node",
"compile:types": "tsc --outDir ./dist/types/ --declaration --emitDeclarationOnly",
"watch": "tsc --watch"
},
"keywords": [
"testing",
"chaos",
"resillience",
"flystorage",
"filesystem"
],
"author": "Frank de Jonge (https://frankdejonge.nl)",
"homepage": "https://flystorage.dev/tools/chaos/",
"repository": {
"type": "git",
"url": "git+https://github.com/duna-oss/flystorage.git",
"directory": "packages/chaos"
},
"license": "MIT"
}