UNPKG

n8n-nodes-wax

Version:

n8n Community Node Package for the WAX Blockchain

76 lines (75 loc) 2.21 kB
{ "name": "eosjs-ecc", "version": "4.0.7", "description": "Elliptic curve cryptography functions", "keywords": [ "ECC", "Private Key", "Public Key", "Signature", "AES", "Encryption", "Decryption" ], "main": "lib/index.js", "files": [ "README.md", "docs", "lib" ], "scripts": { "test": "mocha --use_strict src/*.test.js", "test_lib": "mocha --use_strict lib/*.test.js", "coverage": "nyc --reporter=lcov --reporter=text npm test", "coveralls": "yarn coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", "build": "yarn build_lib && yarn build_browser", "build_lib": "rm -f lib/* && babel src --out-dir lib", "build_browser": "mkdir -p lib && browserify -o lib/eosjs-ecc.js -s eosjs_ecc lib/index.js", "build_browser_test": "yarn build && browserify -o dist/test.js lib/*.test.js", "documentation": "node_modules/documentation/bin/documentation.js", "minimize": "terser lib/eosjs-ecc.js -o lib/eosjs-ecc.min.js --source-map --compress --mangle", "docs": "yarn documentation -- readme src/api_common.js --section \"Common API\" --shallow", "srisum": "npx srisum lib/eosjs-ecc.*", "prepublishOnly": "yarn build && yarn minimize && yarn test_lib && yarn docs" }, "repository": { "type": "git", "url": "git://github.com/EOSIO/eosjs-ecc.git" }, "dependencies": { "@babel/runtime": "7.6.0", "bigi": "1.4.2", "browserify-aes": "1.0.6", "bs58": "4.0.1", "bytebuffer": "5.0.1", "create-hash": "1.1.3", "create-hmac": "1.1.6", "ecurve": "1.0.5", "randombytes": "2.0.5" }, "license": "MIT", "devDependencies": { "@babel/cli": "^7.6.0", "@babel/core": "^7.6.0", "@babel/plugin-transform-runtime": "^7.6.0", "@babel/preset-env": "^7.6.0", "browserify": "^16.2.3", "coveralls": "^3.0.3", "documentation": "^8.1.1", "istanbul": "^0.4.5", "mocha": "^5.2.0", "nyc": "^14.1.0", "terser": "^3.17.0" }, "nyc": { "temp-directory": "./coverage/.nyc_output" }, "babel": { "presets": [ "@babel/preset-env" ], "plugins": [ "@babel/plugin-transform-runtime" ] } }