2025-11-05 17:04:23 -03:00

55 lines
1.1 KiB
JSON

{
"name": "sasl-scram-sha-1",
"description": "JavaScript implementation of SCRAM-SHA-1 SASL mechanism.",
"version": "1.3.0",
"author": {
"name": "Lance Stout",
"email": "lance@andyet.net"
},
"bugs": {
"url": "http://github.com/mwild1/js-sasl-scram-sha-1/issues"
},
"dependencies": {
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"randombytes": "^2.0.1"
},
"devDependencies": {
"precommit-hook": "^1.0.2",
"tape": "^5.8.1"
},
"keywords": [
"sasl",
"auth",
"authn",
"authentication",
"security"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mwild1/js-sasl-scram-sha-1.git"
},
"scripts": {
"test": "node test/index.js"
},
"testling": {
"files": [
"test/index.js"
],
"browsers": [
"ie/10..latest",
"chrome/20..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"opera/next",
"safari/6..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
}
}