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.

38 lines
1.2 KiB

  1. {
  2. "name": "blindsecp256k1",
  3. "version": "0.0.6",
  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. "browserify": "npm run build && browserify dist/index.js --standalone blindsecp256k1 > dist/blindsecp256k1-browser.js",
  12. "watch": "./node_modules/.bin/tsc -w -p .",
  13. "ts-node": "./node_modules/.bin/ts-node",
  14. "test": "npm run build && ./node_modules/.bin/mocha -r ts-node/register test/**/*.ts"
  15. },
  16. "author": "arnaucube",
  17. "license": "GPL-3.0",
  18. "dependencies": {
  19. "@ethersproject/keccak256": "5.0.7",
  20. "bigi": "^1.4.2",
  21. "bignumber.js": "7.0.2",
  22. "ecurve": "1.0.0"
  23. },
  24. "devDependencies": {
  25. "@types/bigi": "^1.4.2",
  26. "@types/chai": "^4.2.14",
  27. "@types/ecurve": "^1.0.0",
  28. "@types/mocha": "^8.2.0",
  29. "@types/node": "^14.14.25",
  30. "chai": "^4.2.0",
  31. "mocha": "^8.2.1",
  32. "rimraf": "^3.0.2",
  33. "ts-node": "^9.1.1",
  34. "tslint": "^6.1.3",
  35. "typescript": "^4.1.3",
  36. "browserify": "^16.5.0"
  37. }
  38. }