-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@nthparty/opaque",
"version": "0.3.0",
"description": "TypeScript implementation of the OPAQUE asymmetric password authenticated key exchange (aPAKE) protocol",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"test": "jest --coverage",
"build-and-test": "npm run-script build; npm run-script test",
"coveralls": "npm test && ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"lint-all": "eslint src test --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nthparty/opaque.git#opaque"
},
"keywords": [
"asymmetric",
"password",
"authenticated",
"key-exchange",
"OPAQUE",
"aPAKE",
"PAKE",
"JavaScript",
"TypeScript",
"cryptography",
"cryptographic-library"
],
"author": "Nth Party <[email protected]>",
"contributors": [
{
"name": "Wyatt Howe",
"email": "[email protected]",
"url": "https://nthparty.com"
},
{
"name": "Frederick Jansen",
"email": "[email protected]",
"url": "https://nthparty.com"
},
{
"name": "Andrei Lapets",
"email": "[email protected]",
"url": "https://nthparty.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nthparty/opaque/issues"
},
"homepage": "https://github.com/nthparty/opaque#readme",
"dependencies": {
"libsodium-wrappers-sumo": "0.7.6",
"oprf": "2.0.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/libsodium-wrappers-sumo": "0.7.5",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"coveralls": "3.1.0",
"eslint": "^8.28.0",
"jest": "26.2.2",
"ts-jest": "26.5.6",
"typescript": "4.8.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/lib/*.ts",
"<rootDir>/test/{!(test-io),}.ts"
]
}
}