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

49 lines
1.2 KiB

6 years ago
{
"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",
6 years ago
"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"
},
6 years ago
"keywords": [
"monero",
"mymonero",
"javascript",
"js",
"lightweight",
"lightwallet",
"wallet",
"crypto",
"script",
"utility",
"tool"
6 years ago
],
"author": "MyMonero",
"license": "See LICENSE.TXT. Copyright (c) 2014-2018, MyMonero.com. All rights reserved.",
6 years ago
"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/MyMoneroCoreCpp.js",
"tests/emjs/*"
]
}
6 years ago
}