Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

66 righe
1.9 KiB

  1. {
  2. "name": "fedoragold-wallet-backend",
  3. "version": "6.0.7",
  4. "description": "",
  5. "main": "dist/lib/index.js",
  6. "types": "dist/lib/index.d.ts",
  7. "scripts": {
  8. "prepublish": "npm run-script build",
  9. "build": "./node_modules/.bin/tsc",
  10. "test": "npm run-script build && node dist/tests/tests.js",
  11. "test-all": "npm run-script build && node dist/tests/tests.js --do-performance-tests",
  12. "style": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
  13. "docs": "./node_modules/.bin/typedoc --options ./typedoc.js ./lib/ && touch docs/.nojekyll",
  14. "prepare": "npm run-script build"
  15. },
  16. "files": [
  17. "dist/lib/*"
  18. ],
  19. "keywords": [],
  20. "author": "zpalmtree <22151537+zpalmtree@users.noreply.github.com>",
  21. "contributors": [
  22. "Brandon Lehmann <brandonlehmann@gmail.com>"
  23. ],
  24. "license": "AGPL-3.0",
  25. "dependencies": {
  26. "fedoragold-base58": "file:../fedoragold-base58",
  27. "fedoragold-bytestream": "file:../fedoragold-bytestream",
  28. "fedoragold-utils": "file:../fedoragold-utils",
  29. "lodash": "^4.17.21",
  30. "object-sizeof": "git+https://github.com/zpalmtree/sizeof.git",
  31. "pbkdf2": "^3.0.17",
  32. "request": "^2.88.2",
  33. "request-promise-native": "^1.0.9",
  34. "typedoc": "^0.22.10",
  35. "typedoc-plugin-no-inherit": "^1.3.1",
  36. "typescript": "^4.1.5"
  37. },
  38. "devDependencies": {
  39. "@types/lodash": "^4.14.168",
  40. "@types/node": "^14.14.31",
  41. "@types/pbkdf2": "^3.0.0",
  42. "@types/request-promise-native": "^1.0.18",
  43. "@typescript-eslint/eslint-plugin": "^4.15.1",
  44. "@typescript-eslint/parser": "^4.15.1",
  45. "colors": "^1.4.0",
  46. "eslint": "^7.20.0",
  47. "eslint-config-prettier": "^8.0.0",
  48. "eslint-plugin-import": "^2.22.1",
  49. "eslint-plugin-jsdoc": "^32.1.0",
  50. "eslint-plugin-prefer-arrow": "^1.2.3",
  51. "husky": "^4.2.5",
  52. "lint-staged": "^10.5.4"
  53. },
  54. "lint-staged": {
  55. "**/*.{ts}": [
  56. "yarn style",
  57. "git add"
  58. ]
  59. },
  60. "husky": {
  61. "hooks": {
  62. "pre-commit": "lint-staged"
  63. }
  64. }
  65. }