BatuhanW/haf

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@batuhanw/haf",
  "version": "1.0.0",
  "engines": {
    "node": ">=16"
  },
  "description": "Fully typed, modern, cross-platform persistent JSON storage solution for NodeJS projects.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "dev": "npm run build -- --watch",
    "test": "jest --runInBand",
    "test:watch": "npm run test -- --watch",
    "test:coverage": "jest --runInBand --coverage",
    "build": "rimraf dist && tsc --build tsconfig.build.json",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "format": "prettier --write .",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BatuhanW/haf.git"
  },
  "author": {
    "name": "Batuhan Wilhelm",
    "email": "me@batuhan.dev",
    "url": "https://github.com/BatuhanW"
  },
  "contributors": [
    {
      "name": "Floris Bernard",
      "url": "https://github.com/flut1"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/BatuhanW/haf/issues"
  },
  "homepage": "https://github.com/BatuhanW/haf#readme",
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.11",
    "@types/node": "^18.19.3",
    "@typescript-eslint/eslint-plugin": "^6.16.0",
    "@typescript-eslint/parser": "^6.16.0",
    "eslint": "^8.56.0",
    "eslint-plugin-expect-type": "^0.3.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "dependencies": {
    "fs-extra": "^11.2.0",
    "rimraf": "^5.0.5"
  },
  "keywords": [
    "haf",
    "config",
    "store",
    "cli",
    "typescript",
    "typed",
    "oclif",
    "persistent"
  ]
}