{
  "name": "shift-cipher",
  "version": "1.0.0",
  "description": "",
  "main": "./dist/index.js",
  "type": "module",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "mocha -r ts-node/register src/**/*spec.ts --module commonjs",
    "build": "tsc --module ESNext && terser --compress  -o ./dist/index.js --  ./dist/index.js",
    "lint": "tslint -c tslint.json  -p tsconfig.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bwca/caesar-cipher.git"
  },
  "keywords": [
    "Caesar cipher",
    "Caesar's cipher",
    "shift cipher",
    "Caesar's code",
    "Caesar shift",
    "ROT-13",
    "ROT13"
  ],
  "author": {
    "name": "Volodymyr Yepishev",
    "email": "yepishevv@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Bwca/caesar-cipher/issues"
  },
  "homepage": "https://github.com/Bwca/caesar-cipher#readme",
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/mocha": "^7.0.2",
    "chai": "^4.2.0",
    "mocha": "^7.1.2",
    "terser": "^4.6.13",
    "ts-node": "^8.9.1",
    "tslint": "^6.1.2",
    "typescript": "^3.8.3"
  }
}
