@abstractest/localstorage
Version:
Localstorage fake API implementation
53 lines (52 loc) • 1.68 kB
JSON
{
"name": "@abstractest/localstorage",
"version": "0.0.1",
"description": "Localstorage fake API implementation",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"module": "./target/esm/index.mjs",
"types": "./target/dts/index.d.ts",
"files": [
"target/cjs",
"target/esm",
"target/dts"
],
"dependencies": {
"@abstractest/types": "0.5.1"
},
"devDependencies": {
"@abstractest/infra": "workspace:*",
"@types/node": "^20.4.5"
},
"scripts": {
"build": "concurrently --kill-others-on-fail 'npm:build:*'",
"build:esm": "node ../infra/scripts/build.mjs",
"build:cjs": "node ../infra/scripts/build.mjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"test": "concurrently --kill-others-on-fail 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/test node --loader ts-node/esm --experimental-specifier-resolution=node ../infra/scripts/test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antongolub/abstractest.git"
},
"author": "Anton Golub <antongolub@antongolub.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antongolub/abstractest/issues"
},
"homepage": "https://github.com/antongolub/abstractest#readme"
}