eccrypto/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2014-12-21 17:46:37 +00:00
{
2022-12-25 11:02:14 +00:00
"name": "@bitmessage/eccrypto",
"version": "1.1.8",
"description": "JavaScript Elliptic curve cryptography library compatible with PyBitmessage",
2014-12-21 17:46:37 +00:00
"main": "index.js",
"browser": "browser.js",
"scripts": {
2015-01-13 19:39:37 +00:00
"install": "node-gyp rebuild || exit 0",
"test": "ECCRYPTO_NO_FALLBACK=1 mocha && xvfb-run -a karma start && jshint .",
2014-12-21 18:05:05 +00:00
"m": "mocha",
"k": "xvfb-run -a karma start",
"kc": "xvfb-run -a karma start --browsers Chromium",
"kf": "xvfb-run -a karma start --browsers Firefox",
"j": "jshint ."
2014-12-21 17:46:37 +00:00
},
"repository": {
"type": "git",
2022-12-25 11:02:14 +00:00
"url": "https://git.bitmessage.org/Bitmessage/eccrypto.git"
2014-12-21 17:46:37 +00:00
},
"keywords": [
"ecc",
"ecdsa",
"ecdh",
"ecies",
"crypto",
"cryptography",
"secp256k1",
2015-01-13 23:53:13 +00:00
"K-256",
2014-12-21 17:46:37 +00:00
"elliptic",
"curve"
],
"author": "Kagami Hiiragi",
2015-07-13 18:14:46 +00:00
"license": "CC0-1.0",
2014-12-21 17:46:37 +00:00
"bugs": {
2022-12-25 11:02:14 +00:00
"url": "https://git.bitmessage.org/Bitmessage/eccrypto/issues"
2014-12-21 17:46:37 +00:00
},
2022-12-25 11:02:14 +00:00
"homepage": "https://git.bitmessage.org/Bitmessage/eccrypto",
2014-12-21 17:46:37 +00:00
"devDependencies": {
"browserify": "16.5.0",
"buffer-equal": "1.0.0",
2014-12-21 17:46:37 +00:00
"chai": "*",
"jshint": "*",
"karma": "6.4.1",
"karma-browserify": "8.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-firefox-launcher": "1.2.0",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
2014-12-21 17:46:37 +00:00
"mocha": "*"
2014-12-23 20:28:40 +00:00
},
"dependencies": {
"acorn": "7.1.1",
"elliptic": "6.5.4",
"es6-promise": "4.2.8",
"nan": "2.14.0"
2015-01-13 19:39:37 +00:00
},
"optionalDependencies": {
"secp256k1": "3.7.1"
2014-12-21 17:46:37 +00:00
}
}