UNPKG

@2waychain/2wayjs

Version:

API wrapper to access the AIBlock 2 Way Chain

84 lines 2.98 kB
{ "name": "@2waychain/2wayjs", "version": "1.0.7", "description": "API wrapper to access the AIBlock 2 Way Chain", "main": "lib/index.js", "types": "lib/index.d.ts", "module": "lib/index.es.js", "browser": "lib/index.js", "source": "src/index.ts", "scripts": { "build": "rimraf lib && microbundle", "lint": "npm run es:lint && npm run check:types && npm run format", "lint:fix": "npm run es:lint:fix && npm run format:fix", "generate:docs": "typedoc src --tsconfig tsconfig.json --out docs", "format:fix": "prettier --write \"src/**/*.(js|ts)\"", "format": "prettier --check \"src/**/*.(js|ts)\"", "check:types": "tsc --noemit", "es:lint": "eslint src --ext .js,.ts", "es:lint:fix": "eslint src --fix --ext .js,.ts", "test": "jest --no-cache --config jest.config.js --forceExit", "test-service": "jest --no-cache --config jest.config.js ./tests/__tests__/wallet.service.test.ts", "test-item": "jest --no-cache --config jest.config.js ./tests/__tests__/item.mgmt.test.ts", "test-key": "jest --no-cache --config jest.config.js ./tests/__tests__/key.mgmt.test.ts", "test-tx": "jest --no-cache --config jest.config.js ./tests/__tests__/tx.mgmt.test.ts", "test-utils": "jest --no-cache --config jest.config.js ./tests/__tests__/utils.test.ts", "test-valence": "jest --no-cache --config jest.config.js ./tests/__tests__/valence.test.ts", "prepare": "npm run build", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "AIBlock", "2 Way Chain", "SDK", "API Module", "TypeScript" ], "author": "Byron Houwens <byron.houwens@a-block.ch>, Robin Plojoux <robin.plojoux@a-block.ch>", "license": "MIT", "devDependencies": { "@types/bitcore-lib": "^0.15.3", "@types/jest": "27.4.1", "@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/parser": "^5.13.0", "assert": "^2.0.0", "buffer": "^6.0.3", "eslint": "7.5.0", "eslint-config-prettier": "^8.4.0", "eslint-plugin-jest": "26.1.1", "eslint-plugin-neverthrow": "^1.1.4", "eslint-plugin-typesafe": "^0.5.2", "jest": "27.5.1", "microbundle": "^0.14.2", "prettier": "2.5.1", "rimraf": "^3.0.2", "ts-jest": "27.1.3", "tslib": "^2.3.1", "typedoc": "^0.23.10", "typescript": "^4.5.0" }, "files": [ "lib/**/*" ], "dependencies": { "axios": "1.6.2", "bitcore-lib": "^8.25.25", "bitcore-mnemonic": "^8.25.25", "byte-base64": "^1.1.0", "joi": "^17.12.3", "js-sha3": "^0.8.0", "neverthrow": "^4.3.1", "tweetnacl": "^1.0.3", "uuid": "^8.3.2" }, "repository": { "type": "git", "url": "git+https://github.com/AIBlockOfficial/2Way.js.git" }, "bugs": { "url": "https://github.com/AIBlockOfficial/2Way.js/issues" }, "homepage": "https://github.com/AIBlockOfficial/2Way.js#readme" }