UNPKG

@fioprotocol/fiojs

Version:

FioJS is a Utility SDK for packing, signing and encryption functionality for the FIO blockchain. It is used by the FIO TypeScript SDK

78 lines (77 loc) 2.38 kB
{ "name": "@fioprotocol/fiojs", "version": "1.0.2", "description": "FioJS is a Utility SDK for packing, signing and encryption functionality for the FIO blockchain. It is used by the FIO TypeScript SDK", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "cypress": "./scripts/run-cypress.sh", "cypress-ui": "./scripts/run-cypress.sh ui", "prepare": "npm run build", "lint": "tslint -c tslint.json -p tsconfig.json", "lint-fix": "tslint -c tslint.json -p tsconfig.json --fix", "test": "jest 'src/tests/.*\\.test\\.ts' --testPathIgnorePatterns src/tests/*node*", "test-node": "jest src/tests/*node*", "test-all": "yarn test && yarn test-node && yarn cypress", "build": "mkdir -p dist && cp -r src/ecc dist && tsc -p ./tsconfig.json", "build-web": "webpack --config webpack.prod.js && webpack --config webpack.debug.js", "build-production": "yarn build && yarn build-web && yarn test-all", "clean": "rm -rf dist" }, "author": "shawn@dapix.io", "license": "MIT", "dependencies": { "ajv": "6.12.6", "babel-runtime": "6.26.0", "bigi": "1.4.2", "browserify-aes": "1.2.0", "bs58": "4.0.1", "create-hash": "1.2.0", "create-hmac": "1.1.7", "ecurve": "1.0.6", "long": "4.0.0", "randombytes": "2.1.0", "ripemd160": "2.0.2", "text-encoding": "0.7.0" }, "devDependencies": { "@types/jest": "24.0.6", "@types/lodash": "4.17.7", "@types/node": "11.9.4", "@types/text-encoding": "0.0.35", "babel-cli": "6.26.0", "babel-plugin-transform-runtime": "6.23.0", "babel-preset-env": "1.7.0", "babel-preset-stage-1": "6.24.1", "cypress": "13.13.2", "jest": "29.7.0", "jest-fetch-mock": "2.1.2", "json-loader": "0.5.7", "lodash": "4.17.21", "mocha": "5.2.0", "mochawesome": "3.1.1", "pretty-format": "29.7.0", "ts-jest": "29.2.4", "ts-loader": "5.3.3", "tslint": "6.1.3", "typescript": "4.9.5", "webpack": "4.29.5", "webpack-cli": "3.2.3" }, "jest": { "automock": false, "setupFiles": [ "./src/tests/setupJest.js" ], "moduleFileExtensions": [ "ts", "tsx", "js" ], "transform": { "^.+\\.(tsx?)$": "ts-jest" }, "testRegex": "(/src/.*(\\.|/)(test|spec|nodetest))\\.(jsx?|tsx?)$", "testEnvironment": "node" } }