UNPKG

mcl-wasm

Version:

mcl ; A portable and fast pairing-based cryptography library for Node.js by WebAssembly

68 lines (67 loc) 1.95 kB
{ "name": "mcl-wasm", "version": "2.2.0", "description": "mcl ; A portable and fast pairing-based cryptography library for Node.js by WebAssembly", "main": "dist/index.js", "packageManager": "pnpm@10.29.1+sha512.48dae233635a645768a3028d19545cacc1688639eeb1f3734e42d6d6b971afbf22aa1ac9af52a173d9c3a20c15857cfa400f19994d79a2f626fcc73fccda9bbc", "scripts": { "build": "pnpm run build:mcl_c.js && pnpm run build:dist && pnpm 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", "pnpm": ">=10.0.0" }, "homepage": "https://github.com/herumi/mcl-wasm#readme", "devDependencies": { "@types/node": "^25.9.1", "assert": "^2.1.0", "perf_hooks": "^0.0.1", "standard": "^17.1.2", "ts-loader": "^9.6.0", "ts-standard": "^12.0.2", "typescript": "^5.9.3", "webpack": "^5.107.2", "webpack-cli": "^6.0.1" }, "standard": { "ignore": [ "src/mcl_c.js", "test/test-ts.js", "test/bls-sig.js", "webpack.config.js", "src/mcl/**", "browser/**", "dist/**" ] }, "ts-standard": { "project": "./tsconfig.json" } }