You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0 KiB

  1. {
  2. "name": "blindsecp256k1",
  3. "version": "0.0.4",
  4. "description": "Blind signatures over secp256k1, compatible with https://github.com/arnaucube/go-blindsecp256k1",
  5. "main": "dist/index",
  6. "types": "dist/index",
  7. "scripts": {
  8. "prepublishOnly": "npm run build",
  9. "clean": "rimraf dist",
  10. "build": "npm run clean && ./node_modules/.bin/tsc",
  11. "watch": "./node_modules/.bin/tsc -w -p .",
  12. "ts-node": "./node_modules/.bin/ts-node",
  13. "test": "npm run build && ./node_modules/.bin/mocha -r ts-node/register test/**/*.ts"
  14. },
  15. "author": "arnaucube",
  16. "license": "GPL-3.0",
  17. "dependencies": {
  18. "@ethersproject/keccak256": "5.0.7",
  19. "bigi": "^1.4.2",
  20. "bignumber.js": "7.0.2",
  21. "ecurve": "1.0.0"
  22. },
  23. "devDependencies": {
  24. "@types/bigi": "^1.4.2",
  25. "@types/chai": "^4.2.14",
  26. "@types/ecurve": "^1.0.0",
  27. "@types/mocha": "^8.2.0",
  28. "@types/node": "^14.14.25",
  29. "chai": "^4.2.0",
  30. "mocha": "^8.2.1",
  31. "rimraf": "^3.0.2",
  32. "ts-node": "^9.1.1",
  33. "tslint": "^6.1.3",
  34. "typescript": "^4.1.3"
  35. }
  36. }