UNPKG

cipher-ethereum

Version:

An Ethereum library used by Cipher Browser, a mobile Ethereum client

74 lines (73 loc) 1.71 kB
{ "name": "cipher-ethereum", "version": "0.1.0", "description": "An Ethereum library used by Cipher Browser, a mobile Ethereum client", "keywords": [ "cipher", "cipherbrowser", "coinbase", "crypto", "cryptocurrency", "cypher", "eip55", "erc20", "eth", "ether", "ethereum", "etherium", "toshi", "typescript", "wallet" ], "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://github.com/petejkim/cipher-ethereum.git", "author": "Peter Jihoon Kim", "license": "MIT", "scripts": { "test": "jest", "dist": "rm -rf dist && tsc && babel dist -d dist", "tsc": "tsc --noEmit --pretty", "lint": "tslint -p . 'src/**/*.ts{,x}'", "watch": "nodemon -e ts,tsx,js,json --watch src/ --exec 'yarn tsc && yarn lint'" }, "dependencies": { "bn.js": "^5.1.3", "bs58": "^4.0.1", "elliptic": "^6.5.3", "keccak": "^3.0.1", "rlp": "^2.2.6" }, "devDependencies": { "@types/bs58": "^4.0.1", "@types/jest": "^26.0.2", "@types/node": "^14.14.22", "babel-cli": "^6.24.1", "babel-preset-latest-node": "^1.0.0", "jest": "^26.6.3", "nodemon": "^2.0.7", "ts-jest": "^26.4.4", "tslint": "^6.1.3", "tslint-config-standard": "^9.0.0", "typescript": "^4.1.3" }, "engines": { "node": ">= 10.0.0" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testEnvironment": "node", "testPathIgnorePatterns": [ "<rootDir>/dist/", "<rootDir>/node_modules/" ], "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "js", "json" ] } }