1
0
mirror of https://github.com/danog/fast-srp.git synced 2024-11-30 04:19:18 +01:00
fast-srp/package.json

28 lines
564 B
JSON
Raw Normal View History

2015-09-07 15:23:26 +02:00
{
2017-04-09 21:39:48 +02:00
"name": "fast-srp-hap",
2015-09-07 15:23:26 +02:00
"description": "Secure Remote Password (SRP)",
2020-04-12 12:55:29 +02:00
"version": "1.1.0",
"main": "dist/index.js",
2015-09-07 15:23:26 +02:00
"scripts": {
"prepare": "rm -rf dist && tsc",
"test": "vows dist/test/test_*.js --spec"
2015-09-07 15:23:26 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/zarmack/fast-srp"
},
"author": "Zarmack Tanen",
"licence": "MIT",
"files": [
"lib",
"dist/index.*",
"dist/lib"
],
"dependencies": {},
2015-09-07 15:23:26 +02:00
"devDependencies": {
"@types/node": "^12.12.3",
"typescript": "^3.6.4",
2020-04-12 07:26:26 +02:00
"vows": "^0.8.3"
2015-09-07 15:23:26 +02:00
}
}