mirror of
https://github.com/danog/fast-srp.git
synced 2024-11-30 04:19:18 +01:00
d8e2938064
* TypeScript and support using saved verifiers * Restored functionality of tests * Added HAP test vectors
28 lines
564 B
JSON
28 lines
564 B
JSON
{
|
|
"name": "fast-srp-hap",
|
|
"description": "Secure Remote Password (SRP)",
|
|
"version": "1.1.0",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prepare": "rm -rf dist && tsc",
|
|
"test": "vows dist/test/test_*.js --spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/zarmack/fast-srp"
|
|
},
|
|
"author": "Zarmack Tanen",
|
|
"licence": "MIT",
|
|
"files": [
|
|
"lib",
|
|
"dist/index.*",
|
|
"dist/lib"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.3",
|
|
"typescript": "^3.6.4",
|
|
"vows": "^0.8.3"
|
|
}
|
|
}
|