forked from zarmack/fast-srp
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "fast-srp-hap",
"description": "Secure Remote Password (SRP)",
"version": "2.0.4",
"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"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^10.17.60",
"typescript": "^4.8.3",
"vows": "^0.8.3",
"nyc": "^15.1.0",
"typedoc": "0.23.15",
"eslint": "^8.23.1",
"@typescript-eslint/parser": "^5.38.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"rimraf": "^3.0.2"
},
"nyc": {
"exclude": [
"*/test",
"jsbn"
]
}
}