{
  "name": "concat-text-webpack-plugin",
  "version": "0.2.1",
  "description": "Concatenate and extract text files.",
  "main": "dist/cjs.js",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=8 <=16"
  },
  "scripts": {
    "prebuild": "npm run clean",
    "build": "babel src -d dist",
    "prepublishOnly": "npm run build && pkg-ok",
    "release": "npm version -m \"chore(release): :package: new version for webpack-concat-text-plugin\"",
    "clean": "rimraf dist",
    "pretest": "npm run lint",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/index.js test"
  },
  "author": "Patrick Lam <patrick.lam@emea.merkleinc.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/merkle-open/webpack-concat-text-plugin.git"
  },
  "dependencies": {
    "concat": "1.0.3",
    "glob": "7.1.6",
    "webpack-sources": "1.4.3"
  },
  "devDependencies": {
    "@babel/cli": "7.12.10",
    "@babel/core": "7.12.10",
    "@babel/preset-env": "7.12.11",
    "@namics/eslint-config": "9.0.5",
    "babel-eslint": "10.1.0",
    "babel-jest": "26.6.3",
    "eslint": "7.17.0",
    "eslint-plugin-import": "2.22.1",
    "jest": "26.6.3",
    "memory-fs": "0.5.0",
    "pkg-ok": "2.3.1",
    "rimraf": "3.0.2",
    "webpack": "4.43.0"
  },
  "jest": {
    "transform": {
      "^.+\\.js$": "babel-jest"
    },
    "testEnvironment": "node",
    "watchPathIgnorePatterns": [
      "<rootDir>/test/__output__"
    ],
    "coverageDirectory": "test/coverage",
    "collectCoverageFrom": [
      "src/index.js",
      "!**/node_modules/**",
      "!**/test/**"
    ]
  }
}
