UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

112 lines 3.8 kB
{ "name": "@pokt-network/pocket-js", "version": "0.9.2-rc", "engine": { "node": ">=12.16.0 <=16.13.0" }, "description": "Pocket-js core package with the main functionalities to interact with the Pocket Network.", "license": "MIT", "main": "index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "directories": { "tests": "./tests" }, "scripts": { "generateDocs": "typedoc", "browserify": "browserify browserify.js -p [ minifyify --no-map ] --standalone PocketJS > dist/web.js", "test:unit": "nyc mocha --require ts-node/register \"tests/src/unit/**/*.ts\" --timeout 0 --exit", "test:integration": "nyc mocha --require ts-node/register \"tests/src/integration/**/*.ts\" --timeout 0 --exit", "build": "rm -rf dist && mkdir dist && cti create ./src && npm run lint && tsc && npm run generateDocs", "prepare": "npm run build && npm run browserify", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "update": "rm -rf dist && rm -rf node_modules && rm -rf package-lock.json && npm install" }, "repository": "https://github.com/pokt-network/pocket-js/tree/master/packages/core", "homepage": "https://github.com/pokt-network/pocket-js", "bugs": { "url": "https://github.com/pokt-network/pocket-js/issues" }, "keywords": [ "Pocket", "Network", "SDK", "Core", "JavaScript", "Blockchain", "Tool" ], "author": "Pocket Network", "authors": [ { "name": "Pabel Nunez Landestoy", "email": "pabel@pokt.network", "homepage": "https://github.com/pabelnl" }, { "name": "Luis C. de León", "email": "luis@pokt.network", "homepage": "https://github.com/luyzdeleon" }, { "name": "Wilson Garcia", "email": "wilson@pokt.network", "homepage": "https://github.com/wgarcia4190" }, { "name": "Alex Firmani", "email": "alex@pokt.network", "homepage": "https://github.com/nymd" } ], "dependencies": { "@pokt-network/aat-js": "0.1.3-rc", "@pokt-network/amino-js": "0.7.5-alpha.1", "@tendermint/belt": "^0.2.1", "@types/aes-js": "^3.1.0", "@types/libsodium-wrappers": "^0.7.7", "@types/scrypt-js": "^2.0.4", "@types/varint": "^6.0.0", "aes-js": "^3.1.2", "axios": "^0.21.1", "bigint-conversion": "^2.1.12", "browserify": "^16.5.1", "buffer": "^5.6.0", "js-sha256": "^0.9.0", "js-sha3": "^0.8.0", "libsodium-wrappers": "^0.7.6", "minifyify": "^7.3.5", "node-localstorage": "^2.1.5", "pbkdf2": "^3.0.17", "scrypt-js": "^3.0.1", "ts-proto": "^1.76.0", "tsify": "^4.0.1", "varint": "^6.0.0" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@types/chai": "^4.2.7", "@types/dotenv": "^8.2.0", "@types/mocha": "^5.2.7", "@types/node": "^12.12.17", "@types/pbkdf2": "^3.0.0", "@types/seedrandom": "^2.4.28", "chai": "^4.2.0", "create-ts-index": "^1.12.0", "dotenv": "^8.2.0", "mocha": "^7.1.1", "nock": "^12.0.3", "nyc": "^15.1.0", "prettier": "^1.19.1", "source-map-support": "^0.5.16", "ts-loader": "^6.2.2", "ts-node": "^8.6.2", "tslint": "^6.1.0", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.20.36", "typescript": "^3.7.2" } }