{
  "name": "blowfish-node",
  "version": "1.1.4",
  "description": "Blowfish encryption library for browsers and Node.js",
  "main": "dist/blowfish.js",
  "types": "./blowfish-node.d.ts",
  "scripts": {
    "lint": "eslint src test tools",
    "build": "npm run build:concat && npm run build:transpile && npm run build:wrap && npm run build:compress && node tools/distSize",
    "build:concat": "rollup -f es -i src/Blowfish.js -o dist/blowfish.js",
    "build:transpile": "babel dist/blowfish.js -o dist/blowfish.js",
    "build:wrap": "rollup -f umd -n Blowfish -i dist/blowfish.js -o dist/blowfish.js",
    "build:compress": "uglifyjs dist/blowfish.js -o dist/blowfish.js -m -c",
    "test": "npm run lint && npm run build && npm run mocha",
    "mocha": "mocha",
    "preversion": "npm test",
    "version": "git add package.json package-lock.json",
    "postversion": "git push && git push --tags && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mrdhanz/blowfish-node.git"
  },
  "keywords": [
    "blowfish",
    "cipher",
    "ecb",
    "cbc",
    "encryption",
    "decryption",
    "library"
  ],
  "author": "egoroof, mrdhanz",
  "files": [
    "LICENSE.md",
    "README.md",
    "dist/blowfish.js",
    "blowfish-node.d.ts"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mrdhanz/blowfish-node/issues"
  },
  "homepage": "https://github.com/mrdhanz/blowfish-node#readme",
  "devDependencies": {
    "@babel/core": "^7.11.6",
    "@babel/cli": "^7.11.6",
    "@babel/preset-env": "^7.11.5",
    "eslint": "^7.9.0",
    "mocha": "^8.1.3",
    "rollup": "^2.27.1",
    "uglify-js": "^3.10.4"
  }
}
