eccrypto/package.json

62 lines
1.4 KiB
JSON
Raw Normal View History

2014-12-21 17:46:37 +00:00
{
"name": "eccrypto",
2018-12-11 14:47:43 +00:00
"version": "1.1.0",
2014-12-21 17:46:37 +00:00
"description": "JavaScript Elliptic curve cryptography library",
"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",
"url": "https://github.com/bitchan/eccrypto.git"
},
"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": {
"url": "https://github.com/bitchan/eccrypto/issues"
},
"homepage": "https://github.com/bitchan/eccrypto",
"devDependencies": {
2018-12-11 14:47:43 +00:00
"browserify": "16.2.3",
"buffer-equal": "0.0.1",
2014-12-21 17:46:37 +00:00
"chai": "*",
"jshint": "*",
2018-12-11 14:47:43 +00:00
"karma": "3.1.3",
"karma-browserify": "6.0.0",
"karma-chrome-launcher": "0.2.0",
"karma-cli": "0.1.0",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.0.2",
2014-12-21 17:46:37 +00:00
"mocha": "*"
2014-12-23 20:28:40 +00:00
},
"dependencies": {
2018-12-11 14:47:43 +00:00
"acorn": "6.0.0",
"elliptic": "6.0.2",
"es6-promise": "3.0.2",
"nan": "2.11.1"
2015-01-13 19:39:37 +00:00
},
"optionalDependencies": {
2018-12-11 14:47:43 +00:00
"secp256k1": "2.0.4"
2014-12-21 17:46:37 +00:00
}
}