@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
130 lines (129 loc) • 4.21 kB
JSON
{
"name": "@mavrykdynamics/taquito",
"version": "20.0.2",
"description": "High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.",
"keywords": [
"mavryk",
"blockchain"
],
"main": "dist/taquito.umd.js",
"unpkg": "dist/taquito.min.js",
"module": "dist/taquito.es6.js",
"typings": "dist/types/taquito.d.ts",
"files": [
"signature.json",
"dist",
"patch.js"
],
"publishConfig": {
"access": "public"
},
"author": "Simon Boissonneault-Robert <simon@ecadlabs.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ecadlabs/taquito.git"
},
"bugs": {
"url": "https://github.com/ecadlabs/taquito/issues"
},
"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 ./version-stamping.js",
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
"build:release": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs && npm run build:web",
"build:web": "webpack && node update-readme.js",
"start": "rollup -c rollup.config.ts --bundleConfigAsCjs -w",
"postinstall": "node patch.js"
},
"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": {
"^@mavrykdynamics/taquito-rpc$": "<rootDir>/../taquito-rpc/src/taquito-rpc.ts",
"^@mavrykdynamics/taquito-michelson-encoder$": "<rootDir>/../taquito-michelson-encoder/src/taquito-michelson-encoder.ts",
"^@mavrykdynamics/taquito-michel-codec$": "<rootDir>/../taquito-michel-codec/src/taquito-michel-codec.ts",
"^@mavrykdynamics/taquito-http-utils$": "<rootDir>/../taquito-http-utils/src/taquito-http-utils.ts",
"^@mavrykdynamics/taquito-utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"dependencies": {
"@mavrykdynamics/taquito-core": "^20.0.2",
"@mavrykdynamics/taquito-http-utils": "^20.0.2",
"@mavrykdynamics/taquito-local-forging": "^20.0.2",
"@mavrykdynamics/taquito-michel-codec": "^20.0.2",
"@mavrykdynamics/taquito-michelson-encoder": "^20.0.2",
"@mavrykdynamics/taquito-rpc": "^20.0.2",
"@mavrykdynamics/taquito-utils": "^20.0.2",
"bignumber.js": "^9.1.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/types": "7.23.0",
"@types/bluebird": "^3.5.40",
"@types/estree": "^1.0.2",
"@types/jest": "^29.5.5",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"buffer": "^6.0.3",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"lint-staged": "^14.0.1",
"lodash.camelcase": "^4.3.0",
"os-browserify": "^0.3.0",
"prettier": "^3.0.3",
"prompt": "^1.3.0",
"replace-in-file": "^7.0.1",
"rimraf": "^5.0.5",
"rollup": "^4.1.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rx-sandbox": "^2.0.5",
"shelljs": "^0.8.5",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-subresource-integrity": "^5.1.0"
},
"gitHead": "c3147796186975bebbd948caa5a2dbf1b47bba8e"
}