{
  "name": "@miracl/crypto-js",
  "version": "4.0.0",
  "description": "Crypto Library in JavaScript",
  "main": "./src/ctx.js",
  "type": "module",
  "directories": {
    "doc": "doc",
    "example": "examples",
    "test": "test"
  },
  "scripts": {
    "test": "mocha",
    "coverage": "nyc mocha",
    "report": "nyc report --reporter=text-lcov | coveralls",
    "lint": "eslint .",
    "dist": "rm -rf dist/ && mkdir dist && cp src/* dist/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.corp.miracl.com/mfa/pkg/crypto-js.git"
  },
  "keywords": [
    "pairing",
    "elliptic",
    "curve",
    "cryptography"
  ],
  "author": "Michael Scott, Alessandro Budroni, Kealan McCusker",
  "license": "Apache-2.0",
  "devDependencies": {
    "chai": "^3.5.0",
    "coveralls": "^3.0.2",
    "eslint": "^8.3.0",
    "mocha": "^8.0.1",
    "mocha-text-cov": "^0.1.1",
    "nyc": "^15.1.0"
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "reporter": [
      "lcov",
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
