@taquito/signer
Version:
Provide signing functionality to be with taquito
116 lines (115 loc) • 3.1 kB
JSON
{
"name": "@taquito/signer",
"version": "22.0.0",
"description": "Provide signing functionality to be with taquito",
"keywords": [
"tezos",
"blockchain",
"signer"
],
"main": "dist/taquito-signer.umd.js",
"module": "dist/taquito-signer.es6.js",
"typings": "dist/types/taquito-signer.d.ts",
"files": [
"dist",
"signature.json"
],
"publishConfig": {
"access": "public"
},
"author": "Simon Boissonneault-Robert <simon@ecadlabs.com>",
"repository": {
"type": "git",
"url": ""
},
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"lint": "eslint --ext .js,.ts .",
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"version-stamp": "node ../taquito/version-stamping.js",
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"^@taquito/utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.3",
"@stablelib/hmac": "^1.0.1",
"@stablelib/nacl": "^1.0.4",
"@stablelib/pbkdf2": "^1.0.1",
"@stablelib/sha512": "^1.0.1",
"@taquito/core": "^22.0.0",
"@taquito/taquito": "^22.0.0",
"@taquito/utils": "^22.0.0",
"@types/bn.js": "^5.1.5",
"bip39": "3.1.0",
"elliptic": "^6.6.1",
"pbkdf2": "^3.1.2",
"typedarray-to-buffer": "^4.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/node": "^18",
"@types/pbkdf2": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lint-staged": "^15.2.7",
"lodash.camelcase": "^4.3.0",
"prettier": "^3.3.3",
"prompt": "^1.3.0",
"replace-in-file": "^8.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"typedoc": "^0.26.5",
"typescript": "~5.5.4"
},
"gitHead": "134ec228acbee03b4f40b80c89d78c718557569b"
}