-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.3 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
{
"name": "ecc-crypto-helper",
"version": "1.6.1",
"description": "A Node.js elliptic curve and RSA crypto helper library.",
"main": "index.js",
"author": {
"name": "Amir Khawaja",
"email": "khawaja.amir@gmail.com"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"url": "https://github.com/akhawaja/ecc-crypto-helper"
},
"keywords": [
"elliptic curve cryptography",
"cryptography",
"JSON Web Tokens",
"crypto",
"ecc",
"jwe",
"jwt",
"jws",
"ksuid",
"hash",
"hkdf",
"rsa",
"password hash"
],
"private": false,
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^12.0.1"
},
"dependencies": {
"debug": "^4.3.1",
"eckey-utils": "^0.7.10",
"futoin-hkdf": "^1.3.2",
"jws": "^4.0.0",
"ksuid": "^2.0.0",
"pem-jwk": "^2.0.0"
},
"standard": {
"ignore": [
"**/test/"
],
"globals": [
"module",
"require",
"describe"
]
}
}