{
  "name": "puffy-core",
  "version": "1.3.2",
  "description": "A collection of ES6 modules with zero-dependencies to help manage common programming tasks in both NodeJS or native JS.",
  "main": "./dist/index.cjs",
  "exports": {
    ".": "./dist/index.cjs",
    "./collection": "./src/collection.mjs",
    "./converter": "./src/converter.mjs",
    "./crypto": "./src/crypto.mjs",
    "./date": "./src/date.mjs",
    "./db": "./src/db.mjs",
    "./error": "./src/error.mjs",
    "./func": "./src/func.mjs",
    "./logger": "./src/logger.mjs",
    "./math": "./src/math.mjs",
    "./obj": "./src/obj.mjs",
    "./string": "./src/string.mjs",
    "./time": "./src/time.mjs",
    "./url": "./src/url.mjs",
    "./validate": "./src/validate.mjs",
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nicolasdao/puffy-core.git"
  },
  "bugs": {
    "url": "https://github.com/nicolasdao/puffy-core/issues"
  },
  "homepage": "https://github.com/nicolasdao/puffy-core#readme",
  "scripts": {
    "build": "rollup -c",
    "dev": "TZ=UTC NODE_ENV=dev node index.mjs",
    "lint": "eslint rollup.config.js src/ test/ --fix --ext .mjs",
    "push": "npm run build && git push --follow-tags origin master && npm publish",
    "rls": "standard-version --release-as",
    "start": "TZ=UTC NODE_ENV=production node index.mjs",
    "test": "mocha --exit",
    "v": "node -e \"console.log(require('./package.json').version)\""
  },
  "author": "Nicolas Dao",
  "license": "BSD-3-Clause",
  "devDependencies": {
    "chai": "^4.3.4",
    "eslint": "^7.32.0",
    "mocha": "^11.0.1",
    "rollup": "^2.58.0",
    "rollup-plugin-multi-input": "^1.3.1",
    "standard-version": "^9.3.1"
  }
}
