forked from tornado-packages/noble-curves
96 lines
2.4 KiB
JSON
96 lines
2.4 KiB
JSON
{
|
|
"name": "@noble/curves",
|
|
"version": "0.2.1",
|
|
"description": "Minimal, zero-dependency JS implementation of elliptic curve cryptography",
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"lib/esm"
|
|
],
|
|
"scripts": {
|
|
"bench": "node curve-definitions/benchmark/index.js",
|
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
"build:release": "rollup -c rollup.config.js",
|
|
"lint": "prettier --check 'src/**/*.{js,ts}' 'curve-definitions/src/**/*.{js,ts}'",
|
|
"format": "prettier --write 'src/**/*.{js,ts}' 'curve-definitions/src/**/*.{js,ts}'",
|
|
"test": "cd curve-definitions; node test/index.test.js"
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/noble/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/paulmillr/noble-curves.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "13.3.0",
|
|
"micro-bmark": "0.2.0",
|
|
"micro-should": "0.2.0",
|
|
"prettier": "2.6.2",
|
|
"rollup": "2.75.5",
|
|
"typescript": "4.7.3"
|
|
},
|
|
"main": "index.js",
|
|
"exports": {
|
|
"./edwards": {
|
|
"types": "./lib/edwards.d.ts",
|
|
"import": "./lib/esm/edwards.js",
|
|
"default": "./lib/edwards.js"
|
|
},
|
|
"./modular": {
|
|
"types": "./lib/modular.d.ts",
|
|
"import": "./lib/esm/modular.js",
|
|
"default": "./lib/modular.js"
|
|
},
|
|
"./montgomery": {
|
|
"types": "./lib/montgomery.d.ts",
|
|
"import": "./lib/esm/montgomery.js",
|
|
"default": "./lib/montgomery.js"
|
|
},
|
|
"./weierstrass": {
|
|
"types": "./lib/weierstrass.d.ts",
|
|
"import": "./lib/esm/weierstrass.js",
|
|
"default": "./lib/weierstrass.js"
|
|
},
|
|
"./bls": {
|
|
"types": "./lib/bls.d.ts",
|
|
"import": "./lib/esm/bls.js",
|
|
"default": "./lib/bls.js"
|
|
},
|
|
"./hashToCurve": {
|
|
"types": "./lib/hashToCurve.d.ts",
|
|
"import": "./lib/esm/hashToCurve.js",
|
|
"default": "./lib/hashToCurve.js"
|
|
},
|
|
"./group": {
|
|
"types": "./lib/group.d.ts",
|
|
"import": "./lib/esm/group.js",
|
|
"default": "./lib/group.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./lib/utils.d.ts",
|
|
"import": "./lib/esm/utils.js",
|
|
"default": "./lib/utils.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"elliptic",
|
|
"curve",
|
|
"cryptography",
|
|
"hyperelliptic",
|
|
"p256",
|
|
"p384",
|
|
"p521",
|
|
"nist",
|
|
"ecc",
|
|
"ecdsa",
|
|
"eddsa",
|
|
"schnorr"
|
|
],
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://paulmillr.com/funding/"
|
|
}
|
|
]
|
|
} |