nist-weierstrauss
Version:
Utilities for NIST Weierstrauss ECC curves for the Ceramic did:key method resolver
54 lines (53 loc) • 1.46 kB
JSON
{
"name": "nist-weierstrauss",
"version": "1.6.1",
"description": "Utilities for NIST Weierstrauss ECC curves for the Ceramic did:key method resolver",
"author": "Brent Shambaugh brent.shambaugh@gmail.com",
"license": "(Apache-2.0 OR MIT)",
"keywords": [
"ceramic",
"nist",
"weierstrauss"
],
"source": "src/index.ts",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"files": [
"lib/"
],
"type":"module",
"sideEffects": false,
"scripts": {
"test": "jest --silent",
"build": "tsc -p tsconfig.build.json",
"start": "tsdx watch",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/bshambaugh/nist-weierstrauss.git"
},
"homepage": "https://github.com/bshambaugh/nist-weierstrauss",
"bugs": {
"url": "https://github.com/bshambaugh/nist-weierstrauss/issues"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"bigint-mod-arith": "^3.1.0",
"eslint": "^7.21.0",
"eslint-config-3box": "^0.2.0",
"jest": "^29.2.2",
"prettier": "^2.2.1",
"tsdx": "^0.14.1",
"typescript": "^4.2.3"
},
"dependencies": {
"multiformats": "^9.6.5",
"uint8arrays": "^2.1.4"
}
}