eccrypto/package.json

59 lines
1.4 KiB
JSON

{
"name": "eccrypto",
"version": "0.1.2",
"description": "JavaScript Elliptic curve cryptography library",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"install": "node-gyp rebuild || exit 0",
"test": "mocha && xvfb-run -a karma start && jshint .",
"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 ."
},
"repository": {
"type": "git",
"url": "https://github.com/bitchan/eccrypto.git"
},
"keywords": [
"ecc",
"ecdsa",
"ecdh",
"ecies",
"crypto",
"cryptography",
"secp256k1",
"elliptic",
"curve"
],
"author": "Kagami Hiiragi",
"license": "CC0",
"bugs": {
"url": "https://github.com/bitchan/eccrypto/issues"
},
"homepage": "https://github.com/bitchan/eccrypto",
"devDependencies": {
"buffer-equal": "~0.0.1",
"chai": "*",
"jshint": "*",
"karma": "^0.12.28",
"karma-browserify": "^1.0.1",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "~0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^0.3.1",
"mocha": "*"
},
"dependencies": {
"elliptic": "^1.0.1",
"es6-promise": "^2.0.1",
"nan": "^1.4.1"
},
"optionalDependencies": {
"secp256k1": "~0.0.13"
}
}