@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
131 lines (130 loc) • 4.05 kB
JSON
{
"name": "@taquito/taquito",
"version": "17.2.0",
"description": "High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.",
"keywords": [
"tezos",
"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": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest --coverage --testPathIgnorePatterns=operation-factory.spec.ts",
"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",
"build:release": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts && npm run build:web",
"build:web": "webpack && node update-readme.js",
"start": "rollup -c rollup.config.ts -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": {
"^@taquito/rpc$": "<rootDir>/../taquito-rpc/src/taquito-rpc.ts",
"^@taquito/michelson-encoder$": "<rootDir>/../taquito-michelson-encoder/src/taquito-michelson-encoder.ts",
"^@taquito/michel-codec$": "<rootDir>/../taquito-michel-codec/src/taquito-michel-codec.ts",
"^@taquito/http-utils$": "<rootDir>/../taquito-http-utils/src/taquito-http-utils.ts",
"^@taquito/utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
},
"dependencies": {
"@taquito/core": "^17.2.0",
"@taquito/http-utils": "^17.2.0",
"@taquito/local-forging": "^17.2.0",
"@taquito/michel-codec": "^17.2.0",
"@taquito/michelson-encoder": "^17.2.0",
"@taquito/rpc": "^17.2.0",
"@taquito/utils": "^17.2.0",
"bignumber.js": "^9.1.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/types": "7.16.0",
"@types/bluebird": "^3.5.36",
"@types/estree": "^0.0.50",
"@types/jest": "^26.0.23",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"buffer": "^6.0.3",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^13.0.1",
"lodash.camelcase": "^4.3.0",
"os-browserify": "^0.3.0",
"prettier": "^2.7.0",
"prompt": "^1.3.0",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.1",
"rx-sandbox": "^2.0.4",
"shelljs": "^0.8.5",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.4",
"ts-node": "^10.4.0",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.2.4",
"webpack": "^5.75.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^4.10.0",
"webpack-subresource-integrity": "^1.4.1"
},
"gitHead": "8fe3376401f12f5a97556479620c0414a6e5c7c3"
}