{
  "name": "mcl-wasm",
  "version": "1.8.0",
  "description": "mcl ; A portable and fast pairing-based cryptography library for Node.js by WebAssembly",
  "main": "dist/index.js",
  "scripts": {
    "build": "npm run build:mcl_c.js && npm run build:dist && npm run build:browser",
    "build:mcl_c.js": "make",
    "build:dist": "tsc",
    "build:browser": "webpack",
    "lint": "standard --verbose test/test.js; ts-standard --verbose src/*.ts",
    "lint-fix": "standard --fix test/test.js; ts-standard --fix src/*.ts",
    "test-ts": "tsc && tsc test/test-ts.ts && node test/test-ts.js",
    "test": "tsc && node test/test.js && node test/eth-test.js"
  },
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/herumi/mcl-wasm.git"
  },
  "keywords": [
    "elliptic curve",
    "WebAssembly",
    "pairing"
  ],
  "files": [
    "dist/*",
    "browser/mcl.js",
    "browser/package.json"
  ],
  "author": "herumi <herumi@nifty.com> (https://github.com/herumi/)",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/herumi/mcl-wasm/issues"
  },
  "engines": {
    "node": ">=14.17"
  },
  "homepage": "https://github.com/herumi/mcl-wasm#readme",
  "devDependencies": {
    "assert": "^2.0.0",
    "perf_hooks": "^0.0.1",
    "standard": "^16.0.4",
    "ts-loader": "^9.2.6",
    "ts-standard": "^10.0.0",
    "typescript": "^4.9.5",
    "webpack": "^5.64.1",
    "webpack-cli": "^4.9.1"
  },
  "standard": {
    "ignore": [
      "src/mcl_c.js"
    ]
  },
  "ts-standard": {
    "project": "./tsconfig.json"
  },
  "dependencies": {
    "@types/node": "^20.2.5"
  }
}
