UNPKG

@kazeblockchain/krypton-js

Version:

Javascript libraries for kaze wallet using https://github.com/kazechainio/kazewallet/blob/master/js/wallet.js as the original source.

100 lines (99 loc) 3.61 kB
{ "devDependencies": { "@babel/core": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/polyfill": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/register": "^7.0.0", "@types/loglevel": "^1.5.3", "axios-mock-adapter": "^1.15.0", "babel-loader": "^8.0.0", "babel-plugin-istanbul": "^5.0.1", "chai": "^4.0.2", "chai-as-promised": "^7.1.0", "clean-webpack-plugin": "^0.1.19", "cross-env": "^5.2.0", "eslint": "^5.4.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.0", "eslint-plugin-standard": "^4.0.0", "mocha": "^5.2.0", "nyc": "^13.0.1", "typescript": "^2.9.2", "webpack": "^4.17.1", "webpack-cli": "^3.1.0" }, "name": "@kazeblockchain/krypton-js", "description": "Javascript libraries for kaze wallet using https://github.com/kazechainio/kazewallet/blob/master/js/wallet.js as the original source.", "version": "1.1.8", "main": "lib/index.js", "browser": "lib/browser.js", "module": "src/index.js", "types": "src/index.d.ts", "dependencies": { "axios": "^0.18.0", "bignumber.js": "5.0.0", "bs58": "^4.0.1", "bs58check": "^2.1.2", "crypto-js": "^3.1.9-1", "elliptic": "^6.4.1", "js-scrypt": "^0.2.0", "loglevel": "^1.6.1", "loglevel-plugin-prefix": "^0.8.4", "scrypt-js": "^2.0.3", "secure-random": "^1.1.1", "semver": "^5.5.1", "wif": "^2.0.6" }, "scripts": { "test": "./node_modules/.bin/mocha ./test && npm run test:typings", "test:unit": "./node_modules/.bin/mocha ./test/unit", "test:integration": "./node_modules/.bin/mocha ./test/integration", "test:typings": "./node_modules/.bin/tsc", "cover": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test && ./node_modules/.bin/nyc report --reporter=lcov", "cover:unit": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test/unit && ./node_modules/.bin/nyc report --reporter=lcov", "cover:integration": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha ./test/integration && ./node_modules/.bin/nyc report --reporter=lcov", "lint": "./node_modules/.bin/eslint ./src/**/*.js ./test/**/*.js", "build:dev": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --mode development", "build:prod": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --mode production", "watch:test": "./node_modules/.bin/mocha ./test/unit --bail --watch --reporter=min", "watch:docs": "cd website && npm run start", "build:docs": "cd website && npm run build", "deploy:docs": "cd website && npm run publish-gh-pages", "rebuild": "rm -rf ./node_modules && npm install && ./node_modules/.bin/webpack", "prepublishOnly": "npm run test:typings && npm run lint", "prepare": "npm run build:prod" }, "repository": { "type": "git", "url": "git+https://github.com/kazeblockchain/krypton-js.git" }, "keywords": [ "kaze", "KIP", "javascript", "libraries" ], "author": "Mohammad Sayadi <Moe@kazesolutions.ch> (https://github.com/MoeSayadiKaze)", "license": "MIT", "bugs": { "url": "https://github.com/kazeblockchain/krypton-js/issues" }, "homepage": "https://github.com/kazeblockchain/krypton-js#readme", "files": [ "lib/", "src/" ], "nyc": { "require": [ "@babel/register" ], "exclude": [ "test" ], "sourceMap": false, "instrument": false } }