1
0
mirror of https://github.com/danog/fast-srp.git synced 2024-11-30 04:19:18 +01:00
fast-srp/package.json
Samuel Elliott d8e2938064
Convert to TypeScript and add support for saved verifiers (#1)
* TypeScript and support using saved verifiers

* Restored functionality of tests

* Added HAP test vectors
2020-04-12 19:39:09 +02:00

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"
}
}