UNPKG

minterjs-wallet

Version:
82 lines (81 loc) 2.81 kB
{ "name": "minterjs-wallet", "version": "6.2.0", "description": "Utilities for handling Minter keys", "main": "dist/cjs/index.js", "module": "src/index.js", "browser": { "./dist/cjs/index.js": "./dist/index.js" }, "unpkg": "dist/index.min.js", "files": [ "/dist/", "/src/" ], "scripts": { "build": "npm run build:browser && npm run build:browser-minify && npm run build:cjs", "build:browser": "rollup -c build/rollup.config.js", "build:cjs": "babel src/ -d dist/cjs/ --config-file ./build/babel-cjs.config.js --no-babelrc", "build:browser-minify": "rollup -c build/rollup-uglify.config.js", "prepublishOnly": "npm run lint && npm run test", "lint": "eslint --ext .js ./src/ ./test/", "lint:fix": "eslint --ext .js ./src/ ./test/ --fix", "test": "npm run jest-coverage && npm run build && npm run jest:bundle-browser && npm run jest:bundle-cjs", "test:bundle-browser": "npm run build:browser && npm run jest:bundle-browser", "test:bundle-cjs": "npm run build:cjs && npm run jest:bundle-cjs", "jest": "jest", "jest:bundle-browser": "jest --config jest-bundle-browser.config.js", "jest:bundle-cjs": "jest --config jest-bundle-cjs.config.js", "jest-coverage": "jest --coverage", "precommit": "echo 'Pre-commit checks...' && npm run lint" }, "pre-commit": [ "precommit" ], "repository": { "type": "git", "url": "https://github.com/MinterTeam/minterjs-wallet.git" }, "keywords": [ "minter", "wallets", "keys" ], "author": "MinterTeam (https://github.com/MinterTeam)", "license": "MIT", "bugs": { "url": "https://github.com/MinterTeam/minterjs-wallet/issues" }, "dependencies": { "bip39": "^3.0.4", "buffer-es6": "https://git@github.com/shrpne/buffer-es6#fix-internal-is-buffer", "ethereum-cryptography": "0.1.3", "ethereumjs-util": "^7.1.5", "minterjs-util": "^0.24.1" }, "devDependencies": { "@babel/cli": "^7.18.10", "@babel/core": "^7.18.13", "@babel/plugin-transform-runtime": "^7.18.10", "@babel/preset-env": "^7.18.10", "@rollup/plugin-commonjs": "^22.0.2", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.3.0", "babel-jest": "^28.1.3", "coveralls": "^3.1.1", "eslint": "^8.22.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.26.0", "eslint-plugin-security": "^1.5.0", "eslint-plugin-unicorn": "^43.0.2", "jest": "^28.1.3", "jest-environment-jsdom": "^28.1.3", "pre-commit": "^1.2.2", "rollup": "^2.79.0", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-node-builtins": "^2.1.2", "rollup-plugin-node-globals": "^1.4.0", "rollup-plugin-terser": "^7.0.2" } }