You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mymonero-core-js/package.json

54 lines
1.6 KiB

{
"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",
"build-emcpp": "mkdir -p build && cd build && emconfigure cmake .. && emmake cmake --build . && emmake make .",
"archive-emcpp": "npm run-script build-emcpp && cp build/MyMoneroCoreCpp.js cryptonote_utils/ && cp build/MyMoneroCoreCpp.wasm cryptonote_utils/",
"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/*"
]
}
}