{
  "name": "twofish-ts",
  "version": "1.0.2",
  "description": "TypeScript implementation of Twofish encryption.",
  "main": "bin/index.js",
  "files": [
    "bin/index.js",
    "bin/index.d.ts"
  ],
  "scripts": {
    "build": "tsc",
    "test": "mocha -r ts-node/register test/**/*-test.ts",
    "lint": "eslint . --ext .ts --fix",
    "minify": "jsmin -o bin/index.min.js bin/index.js && del bin\\index.js && move bin\\index.min.js bin\\index.js",
    "prepare": "tsc && npm run minify && npm test"
  },
  "keywords": [
    "twofish",
    "encryption"
  ],
  "author": "Logan R. Kearsley",
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "^4.2.14",
    "@types/mocha": "^8.0.4",
    "@typescript-eslint/eslint-plugin": "^4.9.1",
    "@typescript-eslint/parser": "^4.9.1",
    "chai": "^4.2.0",
    "eslint": "^7.15.0",
    "jsmin": "^1.0.1",
    "mocha": "^8.2.1",
    "ts-node": "^9.1.1",
    "typescript": "^4.1.2"
  },
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gliese1337/twofish.git"
  },
  "bugs": {
    "url": "https://github.com/gliese1337/twofish/issues"
  },
  "homepage": "https://github.com/gliese1337/twofish#readme"
}
