UNPKG

kura

Version:

The FileSystem API abstraction library.

74 lines (73 loc) 1.71 kB
{ "name": "kura", "version": "0.4.86", "description": "The FileSystem API abstraction library.", "author": "Yoshihiro Seki", "license": "MIT", "homepage": "https://github.com/nikochan2k/kura", "main": "lib/index.js", "types": "lib/index.d.ts", "typings": "lib/index.d.ts", "files": [ "lib", "src" ], "keywords": [ "kura", "FileSystem", "storage", "IndexedDB" ], "repository": { "type": "git", "url": "https://github.com/nikochan2k/kura.git" }, "scripts": { "clean": "rimraf ./lib", "compile": "tsc", "build": "npm-run-all clean compile", "npm-version": "npm version patch", "npm-publish": "npm publish", "release": "npm-run-all build npm-version npm-publish", "test": "jest --runInBand" }, "jest": { "testEnvironment": "jsdom", "moduleFileExtensions": [ "js", "ts", "tsx" ], "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, "globals": { "ts-jest": { "tsconfig": "tsconfig.json" } }, "testMatch": [ "<rootDir>/src/__tests__/*.spec.+(ts|tsx|js)" ], "preset": "ts-jest" }, "devDependencies": { "@types/base64-arraybuffer": "^0.2.0", "@types/jest": "^26.0.24", "@types/node": "^16.10.5", "@typescript-eslint/eslint-plugin": "^5.46.0", "@typescript-eslint/parser": "^5.46.0", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "fake-indexeddb": "^3.1.4", "jest": "^26.6.3", "npm-run-all": "^4.1.5", "rimraf": "^3.0.2", "ts-jest": "^26.5.6", "typescript": "^4.3.5" }, "dependencies": { "base64-arraybuffer": "^1.0.2", "text-encoding-shim": "^1.0.5" } }