{
  "name": "js-dir-into-json",
  "version": "2.7.1",
  "description": "Recursively loads content of found JavaScript and JSON files in given directory into a single structured object",
  "author": "Martin Rafael Gonzalez <tin@devtin.io>",
  "main": "dist/js-dir-into-json.js",
  "module": "dist/js-dir-into-json.mjs",
  "scripts": {
    "build": "rollup -c",
    "build:live": "nodemon -w src -w test --exec npm run build",
    "lint": "eslint --ext .js --ignore-path .gitignore src/",
    "test": "ava --serial --verbose",
    "release": "standard-version -a"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/devtin/js-dir-into-json.git"
  },
  "keywords": [
    "deep",
    "deeply",
    "recursive",
    "recursively",
    "load",
    "list",
    "javascript",
    "json",
    "file",
    "folder",
    "structure"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/devtin/js-dir-into-json/issues"
  },
  "dependencies": {
    "deep-list-dir": "^1.4.4",
    "deepmerge": "^4.2.2",
    "is-plain-object": "^5.0.0",
    "lodash": "^4.17.20"
  },
  "homepage": "https://github.com/devtin/js-dir-into-json#readme",
  "devDependencies": {
    "@ava/babel": "^1.0.1",
    "@rollup/plugin-commonjs": "^17.1.0",
    "ava": "^3.15.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^7.19.0",
    "esm": "^3.2.25",
    "nodemon": "^2.0.7",
    "rollup": "^2.38.5",
    "standard-version": "^9.1.0"
  },
  "ava": {
    "files": [
      "test/**/*.test.js",
      "src/**/*.unit.js",
      "!test/fixtures"
    ],
    "require": [
      "esm"
    ],
    "babel": true,
    "snapshotDir": "test/snapshots"
  },
  "eslintConfig": {
    "extends": "eslint:recommended",
    "parser": "babel-eslint",
    "env": {
      "es6": true,
      "node": true,
      "commonjs": true
    },
    "globals": {
      "BigInt": true
    },
    "parserOptions": {
      "ecmaVersion": 2018,
      "sourceType": "module"
    },
    "ignorePatterns": [
      "*.unit.js"
    ]
  },
  "standard-version": {
    "scripts": {
      "prerelease": "npm run lint && npm run build",
      "precommit": "npm run --silent build > /dev/null 2>&1 && git add dist/ -f"
    }
  }
}
