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

51 lines
1.2 KiB
JSON
Raw Permalink 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)",
2021-01-10 18:00:33 +01:00
"version": "2.0.3",
2020-04-12 19:01:18 +02:00
"main": "lib/srp.js",
"types": "lib/srp.d.ts",
2015-09-07 15:23:26 +02:00
"scripts": {
2020-04-26 18:21:45 +02:00
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output",
2020-04-12 19:30:08 +02:00
"lint": "eslint 'src/**/*.{js,ts,json}'",
2020-04-12 19:01:18 +02:00
"build": "npm run clean && tsc",
2020-04-12 19:30:08 +02:00
"test": "vows lib/test/test_*.js --spec",
2020-04-26 18:21:45 +02:00
"test-coverage": "nyc --reporter=lcovonly npm run test",
2020-04-12 20:50:35 +02:00
"docs": "typedoc src/srp.ts",
2020-04-12 19:01:18 +02:00
"prepublishOnly": "npm run build",
2020-04-12 19:30:08 +02:00
"postpublish": "npm run clean"
2015-09-07 15:23:26 +02:00
},
"repository": {
"type": "git",
2020-04-12 20:01:25 +02:00
"url": "https://github.com/homebridge/fast-srp"
2015-09-07 15:23:26 +02:00
},
"author": "Zarmack Tanen",
2020-04-12 19:01:18 +02:00
"license": "MIT",
"engines": {
"node": ">=10.17.0"
},
"files": [
2020-04-12 19:01:18 +02:00
"jsbn",
"lib",
2020-04-12 19:01:18 +02:00
"!lib/test",
"README.md",
"LICENSE"
],
2015-09-07 15:23:26 +02:00
"devDependencies": {
2021-03-09 12:33:34 +01:00
"@types/node": "^10.17.55",
2021-08-04 15:22:24 +02:00
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
2021-01-10 17:58:51 +01:00
"nyc": "^15.1.0",
2021-08-04 15:22:24 +02:00
"rimraf": "^3.0.2",
2021-03-09 12:33:34 +01:00
"typedoc": "0.20.30",
2021-08-04 15:22:24 +02:00
"typescript": "^4.2.3",
"vows": "^0.8.3"
2020-04-26 18:26:56 +02:00
},
"nyc": {
"exclude": [
"*/test",
"jsbn"
]
2015-09-07 15:23:26 +02:00
}
}