-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 977 Bytes
/
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
{
"name": "ec-key",
"description": "Wrapper around an Elliptic Curve private or public keys",
"version": "0.0.6",
"main": "src/ec-key.js",
"types": "ec-key.d.ts",
"author": "Pier Fumagalli <[email protected]>",
"homepage": "https://github.com/usrz/ec-key",
"bugs": "https://github.com/usrz/ec-key/issues",
"license": "MIT",
"contributors": [
"Pier Fumagalli <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/usrz/ec-key"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"ec",
"elliptic",
"curve",
"crypto",
"private",
"public",
"key",
"pem",
"spki",
"pkcs8",
"pem",
"rfc5208",
"rfc5280",
"rfc5915",
"openssl"
],
"devDependencies": {
"chai": "<5",
"mocha": "^10.6.0"
},
"dependencies": {
"asn1.js": "^5.4.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"src/ec-key.js",
"ec-key.d.ts",
"*.md"
]
}