mirror of
https://github.com/danog/fast-srp.git
synced 2024-11-26 20:04:49 +01:00
43 lines
984 B
JSON
43 lines
984 B
JSON
{
|
|
"name": "fast-srp-hap",
|
|
"description": "Secure Remote Password (SRP)",
|
|
"version": "2.0.2",
|
|
"main": "lib/srp.js",
|
|
"types": "lib/srp.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf lib",
|
|
"lint": "eslint 'src/**/*.{js,ts,json}'",
|
|
"build": "npm run clean && tsc",
|
|
"test": "vows lib/test/test_*.js --spec",
|
|
"docs": "typedoc src/srp.ts",
|
|
"prepublishOnly": "npm run build",
|
|
"postpublish": "npm run clean"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/homebridge/fast-srp"
|
|
},
|
|
"author": "Zarmack Tanen",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=10.17.0"
|
|
},
|
|
"files": [
|
|
"jsbn",
|
|
"lib",
|
|
"!lib/test",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^10.17.19",
|
|
"typescript": "^3.8.3",
|
|
"vows": "^0.8.3",
|
|
"typedoc": "next",
|
|
"eslint": "^6.8.0",
|
|
"@typescript-eslint/parser": "^2.27.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.27.0"
|
|
}
|
|
}
|