{
  "name": "@fnando/cnpj",
  "version": "2.0.0",
  "description": "Validate, generate and format CNPJ numbers",
  "main": "es/index.mjs",
  "module": "es/index.mjs",
  "types": "es/index.d.ts",
  "scripts": {
    "lint": "yarn eslint src",
    "test": "yarn jest",
    "js:dist": "tsc -m es6 --outDir es --target es6 && mv es/index.js es/index.mjs",
    "js:dist:web": "webpack --entry ./es/index.mjs --output-path ./web --output-filename cnpj.min.js --mode production --target web --output-library CNPJ --output-library-export var --devtool source-map",
    "js:dist:node": "tsc -m commonjs --outDir commonjs",
    "dist": "rm -rf {es,commonjs,web} && yarn test && yarn js:dist && yarn js:dist:web && yarn js:dist:node"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/fnando/cnpj.git"
  },
  "keywords": [
    "cnpj",
    "document"
  ],
  "author": "Nando Vieira <me@fnando.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fnando/cnpj/issues"
  },
  "devDependencies": {
    "@babel/types": "*",
    "@fnando/codestyle": "*",
    "@fnando/eslint-config-codestyle": "*",
    "@types/jest": "*",
    "eslint": "*",
    "eslint-config-prettier": "*",
    "eslint-plugin-prettier": "*",
    "jest": "*",
    "jest-filename-transform": "*",
    "ts-jest": "*",
    "typescript": "*",
    "webpack": "*",
    "webpack-cli": "*"
  }
}
