{
  "name": "secure-e2ee",
  "version": "0.4.0",
  "description": "Secure end-to-end-encryption",
  "main": "dist/encryptor.js",
  "browser": "dist/browser-encryptor.js",
  "author": "Simon Knott",
  "license": "MIT",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "tsc",
    "test:node": "nyc mocha -r ts-node/register src/encryptor.spec.ts",
    "test:browser": "parcel mocha.html -d test-dist --open",
    "prepack": "yarn build"
  },
  "devDependencies": {
    "@types/chai": "^4.2.14",
    "@types/md5": "^2.2.1",
    "@types/mocha": "^8.0.4",
    "@types/node": "^14.14.10",
    "chai": "^4.2.0",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "parcel-bundler": "^1.12.4",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "base64-js": "^1.5.1",
    "md5": "^2.3.0"
  }
}
