UNPKG

@kazeblockchain/kazejs

Version:

Javascript libraries for Kaze wallet

106 lines (105 loc) 3.55 kB
{ "devDependencies": { "@babel/core": "^7.0.0-beta.46", "@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46", "@babel/polyfill": "^7.0.0-beta.46", "@babel/preset-env": "^7.0.0-beta.46", "@babel/register": "^7.0.0-beta.46", "@types/loglevel": "^1.5.3", "axios-mock-adapter": "^1.15.0", "babel-eslint": "^8.2.6", "babel-loader": "^8.0.0-beta.0", "babel-plugin-istanbul": "^4.1.6", "chai": "^4.0.2", "chai-as-promised": "^7.1.0", "clean-webpack-plugin": "^0.1.19", "cross-env": "^5.1.4", "eslint": "^4.19.1", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.11.0", "eslint-plugin-node": "^6.0.1", "eslint-plugin-promise": "^3.7.0", "eslint-plugin-react": "^7.10.0", "eslint-plugin-standard": "^3.1.0", "mocha": "^5.1.1", "nyc": "^11.7.2", "types-bn": "0.0.1", "typescript": "^2.8.3", "webpack": "^4.8.1", "webpack-cli": "^2.1.3", "zopfli-webpack-plugin": "^0.1.0" }, "name": "@kazeblockchain/kazejs", "description": "Javascript libraries for Kaze wallet ", "version": "1.0.3", "main": "lib/index.js", "browser": "lib/browser.js", "module": "src/index.js", "types": "src/index.d.ts", "dependencies": { "@types/crypto-js": "^3.1.42", "axios": "^0.18.0", "bignumber.js": "5.0.0", "bs58": "^4.0.1", "bs58check": "^2.1.1", "crypto-js": "^3.1.9-1", "elliptic": "^6.4.0", "js-scrypt": "^0.2.0", "loglevel": "^1.6.1", "loglevel-plugin-prefix": "^0.8.3", "scrypt-js": "^2.0.3", "secure-random": "^1.1.1", "semver": "^5.5.0", "wif": "^2.0.6" }, "scripts": { "test": "mocha ./test && npm run test:typings", "test:unit": "mocha ./test/unit", "test:integration": "mocha ./test/integration", "test:typings": "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": "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": "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 && npm run build:prod" }, "repository": { "type": "git", "url": "git+https://github.com/KAZEBLOCKCHAIN/kazeJs.git" }, "keywords": [ "KAZE", "kaze blockchain solutions", "Swiss blockchain", "javascript", "libraries", "KIP" ], "author": "Moe & Amir <Support@kazesolutions.ch> ", "license": "MIT", "bugs": { "url": "https://Kaze.solutions" }, "homepage": "https://Kaze.solutions", "files": [ "lib/", "src/" ], "nyc": { "require": [ "@babel/register" ], "exclude": [ "test" ], "sourceMap": false, "instrument": false } }