{
  "name": "noble-secp256k1",
  "version": "1.2.14",
  "description": "Fastest JS implementation of secp256k1. Independently audited, high-security, 0-dependency ECDSA & Schnorr signatures",
  "main": "index.js",
  "files": [
    "index.js",
    "index.d.ts"
  ],
  "types": "index.d.ts",
  "scripts": {
    "build": "tsc -d",
    "build-release": "rollup -c rollup.config.js",
    "lint": "prettier --print-width 100 --single-quote --check index.ts",
    "test": "jest",
    "coverage": "jest --coverage",
    "bench": "node test/benchmark.js"
  },
  "jest": {
    "testRegex": "/test/.*?\\.ts",
    "transform": {
      "^.+\\.ts$": "ts-jest"
    }
  },
  "author": "Paul Miller (https://paulmillr.com)",
  "homepage": "https://paulmillr.com/posts/noble-secp256k1-fast-ecc/",
  "repository": {
    "type": "git",
    "url": "https://github.com/paulmillr/noble-secp256k1.git"
  },
  "license": "MIT",
  "browser": {
    "crypto": false
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^19.0.0",
    "@rollup/plugin-node-resolve": "^13.0.0",
    "@types/jest": "^27",
    "@types/node": "^16.3.3",
    "fast-check": "^2.14.0",
    "jest": "^27",
    "micro-bmark": "^0.1.3",
    "noble-hashes": "^0.2.0",
    "prettier": "^2.2.1",
    "rollup": "^2.53.2",
    "ts-jest": "^27",
    "typescript": "~4.3.5"
  },
  "keywords": [
    "secp256k1",
    "secp",
    "secp256",
    "elliptic",
    "elliptic curve",
    "curve",
    "signature",
    "ecc",
    "rfc6979",
    "schnorr",
    "bip0340",
    "bip340",
    "ecdsa",
    "endomorphism",
    "cryptography",
    "security",
    "noble"
  ]
}
