@kubectl/caminojs
Version:
Camino Platform JS Library
126 lines • 3.92 kB
JSON
{
"name": "@kubectl/caminojs",
"version": "1.0.0-dev",
"description": "Camino Platform JS Library",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && npx tsc -b tsconfig_build.json",
"bundle": "webpack --mode production",
"docshtml": "npx typedoc --plugin typedoc-plugin-external-module-name --mode file src",
"docsmd": "npx typedoc --readme none --plugin typedoc-plugin-markdown,typedoc-plugin-external-module-name --theme markdown --out docsMD src",
"docs": "rm -rf docsMD && yarn build && npx typedoc --readme none --theme markdown --out docs",
"lint": "eslint ./ --ext js,ts --fix",
"prebundle": "yarn build",
"prepublish": "yarn build",
"prettier": "npx prettier --write .",
"prettier-check": "prettier --check ./src ./examples ./tests ./__mocks__ .github/**/*.yml",
"prettier-src": "prettier --write ./src",
"release:prepare": "rm -rf ./dist ./node_modules && yarn install && yarn test && yarn build && yarn bundle && git status",
"test": "jest",
"test-watch": "jest --watch",
"transpile:examles": "ts-node -r tsconfig-paths/register examples/<your file>.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chain4travel/caminojs.git"
},
"keywords": [
"camino",
"blockchain",
"travel"
],
"author": "C4T Team <devs@chain4travel.com>",
"contributors": [
"Gabriel Cardona <gabriel@avalabs.org>",
"Evan Richard <evan@avalabs.org>",
"Paul Kim <paul.kim@avalabs.org>",
"Raj Ranjan <raj.ranjan@avalabs.org>",
"Gergely Lovas <gergely.lovas@avalabs.org>",
"Dhruba Basu <dhruba@avalabs.org>"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/chain4travel/caminojs#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/bech32": "1.1.4",
"@types/bn.js": "5.1.0",
"@types/create-hash": "1.2.2",
"@types/hdkey": "2.0.1",
"@types/jest": "29.4.0",
"@types/node": "18.14.2",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"clean-webpack-plugin": "4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-security": "1.7.1",
"git-revision-webpack-plugin": "5.0.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.4.3",
"jest-mock-axios": "4.5.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"semantic-release": "19.0.5",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "0.23.26",
"typedoc-plugin-external-module-name": "4.0.6",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5",
"web3": "^1.8.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"assert": "2.0.0",
"axios": "^0.26.1",
"bech32": "^2.0.0",
"bip39": "3.1.0",
"bn.js": "5.1.1",
"buffer": "^5.5.0",
"create-hash": "1.2.0",
"crypto-browserify": "3.12.0",
"elliptic": "6.5.4",
"ethers": "6.0.8",
"hdkey": "2.1.0",
"isomorphic-ws": "5.0.0",
"randombytes": "^2.1.0",
"store2": "2.14.2",
"stream-browserify": "3.0.0",
"ws": "8.12.1",
"xss": "1.0.14"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"jsxBracketSameLine": false,
"trailingComma": "none"
},
"resolutions": {
"json5": "2.2.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "eslint --fix --max-warnings 0"
},
"directories": {
"example": "examples",
"test": "tests"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/chain4travel/caminojs/issues"
},
"files": [
"dist"
]
}