blob: cc80f77bcb0d95d3bc7882e511ede02a2aaa8836 [file] [log] [blame]
{
"name": "milagro-crypto-js",
"version": "3.6.0",
"description": "Crypto Library in Javascript - Refact of Apache Milagro Crypto Library",
"main": "index.js",
"directories": {
"doc": "doc",
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha-parallel-tests",
"coverage": "nyc mocha-parallel-tests",
"report": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/miracl/milagro-crypto-js.git"
},
"keywords": [
"pairing",
"elliptic",
"curve",
"cryptography"
],
"author": "Michael Scott, Alessandro Budroni, Kealan McCusker",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/miracl/milagro-crypto-js/issues"
},
"homepage": "https://github.com/miracl/milagro-crypto-js#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"eslint": "^4.12.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-text-cov": "^0.1.1",
"nyc": "^11.0.2",
"mocha-parallel-tests": "^2.0.4"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}