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

40 lines
904 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 19:40:28 +02:00
"version": "2.0.0",
2020-04-12 19:01:18 +02:00
"main": "lib/srp.js",
2015-09-07 15:23:26 +02:00
"scripts": {
2020-04-12 19:01:18 +02:00
"clean": "rm -rf lib",
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-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 19:01:18 +02:00
"url": "https://github.com/homebridge/fast-srp-hap"
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"
],
"dependencies": {},
2015-09-07 15:23:26 +02:00
"devDependencies": {
2020-04-12 19:01:18 +02:00
"@types/node": "^10.17.19",
"typescript": "^3.8.3",
2020-04-12 19:30:08 +02:00
"vows": "^0.8.3",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.27.0",
"@typescript-eslint/eslint-plugin": "^2.27.0"
2015-09-07 15:23:26 +02:00
}
}