|
- {
- "name": "fedoragold-wallet-backend",
- "version": "6.0.7",
- "description": "",
- "main": "dist/lib/index.js",
- "types": "dist/lib/index.d.ts",
- "scripts": {
- "prepublish": "npm run-script build",
- "build": "./node_modules/.bin/tsc",
- "test": "npm run-script build && node dist/tests/tests.js",
- "test-all": "npm run-script build && node dist/tests/tests.js --do-performance-tests",
- "style": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
- "docs": "./node_modules/.bin/typedoc --options ./typedoc.js ./lib/ && touch docs/.nojekyll",
- "prepare": "npm run-script build"
- },
- "files": [
- "dist/lib/*"
- ],
- "keywords": [],
- "author": "zpalmtree <22151537+zpalmtree@users.noreply.github.com>",
- "contributors": [
- "Brandon Lehmann <brandonlehmann@gmail.com>"
- ],
- "license": "AGPL-3.0",
- "dependencies": {
- "fedoragold-base58": "file:../fedoragold-base58",
- "fedoragold-bytestream": "file:../fedoragold-bytestream",
- "fedoragold-utils": "file:../fedoragold-utils",
- "lodash": "^4.17.21",
- "object-sizeof": "git+https://github.com/zpalmtree/sizeof.git",
- "pbkdf2": "^3.0.17",
- "request": "^2.88.2",
- "request-promise-native": "^1.0.9",
- "typedoc": "^0.22.10",
- "typedoc-plugin-no-inherit": "^1.3.1",
- "typescript": "^4.1.5"
- },
- "devDependencies": {
- "@types/lodash": "^4.14.168",
- "@types/node": "^14.14.31",
- "@types/pbkdf2": "^3.0.0",
- "@types/request-promise-native": "^1.0.18",
- "@typescript-eslint/eslint-plugin": "^4.15.1",
- "@typescript-eslint/parser": "^4.15.1",
- "colors": "^1.4.0",
- "eslint": "^7.20.0",
- "eslint-config-prettier": "^8.0.0",
- "eslint-plugin-import": "^2.22.1",
- "eslint-plugin-jsdoc": "^32.1.0",
- "eslint-plugin-prefer-arrow": "^1.2.3",
- "husky": "^4.2.5",
- "lint-staged": "^10.5.4"
- },
- "lint-staged": {
- "**/*.{ts}": [
- "yarn style",
- "git add"
- ]
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- }
- }
|