1
0
mirror of https://github.com/danog/fast-srp.git synced 2024-11-26 20:04:49 +01:00
fast-srp/package.json
2021-08-04 15:22:24 +02:00

51 lines
1.2 KiB
JSON

{
"name": "fast-srp-hap",
"description": "Secure Remote Password (SRP)",
"version": "2.0.3",
"main": "lib/srp.js",
"types": "lib/srp.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"build": "npm run clean && tsc",
"test": "vows lib/test/test_*.js --spec",
"test-coverage": "nyc --reporter=lcovonly npm run test",
"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"
],
"devDependencies": {
"@types/node": "^10.17.55",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"typedoc": "0.20.30",
"typescript": "^4.2.3",
"vows": "^0.8.3"
},
"nyc": {
"exclude": [
"*/test",
"jsbn"
]
}
}