nodeforge
Version:
Fork from linuxwolf-forge, JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.
65 lines (64 loc) • 1.59 kB
JSON
{
"name": "nodeforge",
"version": "1.0.0",
"description": "Fork from linuxwolf-forge, JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.",
"homepage": "http://github.com/digitalbazaar/forge",
"author": {
"name": "murcialito",
"email": "murcialito@gmail.com"
},
"dependencies": {
"jsbn": "^0.1.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^3.3.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-uglify": "^0.7.0",
"jscs": "^1.8.1",
"load-grunt-tasks": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/murcialito/forge.git"
},
"main": "js/forge.js",
"engines": {
"node": "*"
},
"keywords": [
"aes",
"asn",
"asn.1",
"cbc",
"crypto",
"cryptography",
"csr",
"des",
"gcm",
"hmac",
"http",
"https",
"md5",
"network",
"pkcs",
"pki",
"prng",
"rc2",
"rsa",
"sha1",
"sha256",
"sha384",
"sha512",
"ssh",
"tls",
"x.509",
"x509"
],
"scripts": {
"bundle": "browserify --standalone=forge --outfile js/forge.bundle.js js/forge.js",
"minify": "browserify --standalone=forge js/forge.js | uglifyjs --output js/forge.min.js",
"jscs": "jscs *.js js/*.js minify.js nodejs/*.js nodejs/test/*.js nodejs/ui/*.js tests/*.js",
"jshint": "jshint *.js js/*.js minify.js nodejs/*.js nodejs/test/*.js nodejs/ui/*.js tests/*.js"
}
}