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.

35 lines
1.0 KiB

  1. {
  2. "name": "blindsecp256k1",
  3. "version": "0.0.2",
  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. "bn.js": "^5.1.3",
  20. "elliptic": "^6.5.4"
  21. },
  22. "devDependencies": {
  23. "@types/bn.js": "^5.1.0",
  24. "@types/chai": "^4.2.14",
  25. "@types/elliptic": "^6.4.12",
  26. "@types/mocha": "^8.2.0",
  27. "@types/node": "^14.14.25",
  28. "chai": "^4.2.0",
  29. "mocha": "^8.2.1",
  30. "rimraf": "^3.0.2",
  31. "ts-node": "^9.1.1",
  32. "tslint": "^6.1.3",
  33. "typescript": "^4.1.3"
  34. }
  35. }