fp-ts-indexeddb
Version:
Simple FP-TS based wrapper around indexedDB
55 lines (54 loc) • 1.6 kB
JSON
{
"name": "fp-ts-indexeddb",
"version": "0.2.3",
"description": "Simple FP-TS based wrapper around indexedDB",
"main": "dist/lib/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es2015/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig.commonjs.json",
"clean": "rimraf ./dist",
"lint:no-fix": "eslint --config='.eslintrc.js' './src/*.{ts,tsx}' './test/*.{ts,tsx}'",
"lint": "npm run lint:no-fix -- --fix",
"prepublishOnly": "npm run build && npm run test -- --ci --silent && npm run lint:no-fix -- --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mblink/fp-ts-indexeddb.git"
},
"keywords": [
"fp-ts",
"indexedDB"
],
"contributors": [
"Justin Leider https://github.com/jleider",
"Harim Tejada https://github.com/harimtejada",
"Wolfgang Mcrae https://github.com/Wolfgang-stack"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mblink/fp-ts-indexeddb/issues"
},
"homepage": "https://github.com/mblink/fp-ts-indexeddb#readme",
"devDependencies": {
"@types/jest": "~27.0.2",
"@typescript-eslint/eslint-plugin": "~5.0.0",
"@typescript-eslint/parser": "~5.0.0",
"eslint": "~8.0.1",
"fake-indexeddb": "^3.1.3",
"fp-ts": "2.10.0",
"io-ts": "2.0.6",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "~3.8.3"
},
"peerDependencies": {
"fp-ts": ">= 2.10.0",
"io-ts": ">= 2.0.6"
}
}