{ "name": "mymonero-core-js", "version": "1.0.0", "description": "The JS library containing the Monero crypto plus lightweight wallet functions behind the official MyMonero apps", "main": "index.js", "repository": { "type": "git", "url": "git+https://github.com/mymonero/mymonero-core-js.git" }, "scripts": { "format": "find . -name '*.js*' | xargs prettier --write --config ./.prettierrc --config-precedence file-override", "test": "jest", "test:coverage": "jest --coverage" }, "keywords": [ "monero", "mymonero", "javascript", "js", "lightweight", "lightwallet", "wallet", "crypto", "script", "utility", "tool" ], "author": "MyMonero", "license": "See LICENSE.TXT. Copyright (c) 2014-2018, MyMonero.com. All rights reserved.", "bugs": { "url": "https://github.com/mymonero/mymonero-core-js/issues" }, "homepage": "https://github.com/mymonero/mymonero-core-js#readme", "dependencies": { "async": "^2.6.0" }, "devDependencies": { "jest": "^23.1.0" }, "jest" : { "testEnvironment":"node", "coveragePathIgnorePatterns": [ "node_modules", "cryptonote_utils/biginteger.js", "cryptonote_utils/nacl-fast-cn.js", "cryptonote_utils/sha3.js", "cryptonote_utils/cryptonote_crypto_EMSCRIPTEN.js", "tests/emjs/*" ] } }