{
  "name": "quantdom",
  "version": "1.3.0",
  "description": "QuantDOM is a very small dom manipulation library that uses Jquery like syntax but is only comprised of the most use Jquery functions. Made to making manipulating the dom less verbose and less key strokes. I chose to base it of Jquery's syntax as many developers are already familar with it so it should be easy to just start using.",
  "jsdelivr": "dist/quantdom.min.js",
  "main": "src/index.js",
  "author": "Sean McQuaid",
  "repository": {
    "type": "git",
    "url": "https://github.com/mcqua007/quantdom.git"
  },
  "scripts": {
    "build": "npx rollup -c && npx jest",
    "docs": "npx jsdoc2md ./src/index.js > docs.md",
    "bump": "npx rollup -c && npm version patch --no-git-tag-version",
    "test": "npx jest",
    "test:coverage": "npx jest --config jestconfig.json",
    "format": "npx prettier --write src/index.js",
    "format:check": "npx prettier -c src/index.js",
    "lint": "npx eslint src/index.js",
    "lint:fix": "npx eslint --fix src/index.js"
  },
  "keywords": [
    "js",
    "javascript",
    "dom",
    "library",
    "mini jquery",
    "manipulation",
    "utilities",
    "utils",
    "nano dom",
    "utilities",
    "query",
    "selector",
    "jquery"
  ],
  "files": [
    "readme.md",
    "LICENSE",
    "src",
    "dist"
  ],
  "homepage": "https://github.com/mcqua007/quantdom#readme",
  "bugs": {
    "url": "https://github.com/mcqua007/quantdom/issues"
  },
  "license": "MIT",
  "private": false,
  "devDependencies": {
    "@babel/core": "^7.17.9",
    "@babel/plugin-transform-runtime": "^7.17.0",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-react": "^7.16.7",
    "eslint": "^8.13.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.5.1",
    "jsdoc-to-markdown": "^7.1.1",
    "prettier": "^2.6.2",
    "rollup": "^2.70.1",
    "rollup-plugin-filesize": "^9.1.2",
    "rollup-plugin-terser": "^7.0.2"
  }
}
