This repository was archived by the owner on Mar 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.04 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.04 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "key-encoder",
"version": "2.1.0",
"description": "Library for encoding ECDSA private keys to PEM, DER and raw hex formats",
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"test": "nyc node ./src/test.ts",
"codecovUpload": "codecov",
"prepublishOnly": "npm run compile",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/blockstack/key-encoder-js.git"
},
"keywords": [
"elliptic",
"elliptic curve",
"asn",
"pem",
"der",
"ecdsa",
"crypto",
"cryptography",
"private",
"key",
"encode",
"decode",
"secp256k1",
"bitcoin",
"curve",
"private key",
"private keys",
"public key",
"public keys",
"keys",
"ecdsa key",
"ecdsa keys",
"key converter",
"convert keys",
"key format",
"key formatter",
"format keys",
"key encoder",
"encode keys"
],
"author": {
"name": "Halfmoon Labs, Inc.",
"email": "hello@onename.com",
"url": "https://onename.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blockstack/key-encoder-js/issues"
},
"homepage": "https://github.com/blockstack/key-encoder-js",
"dependencies": {
"@types/elliptic": "^6.4.9",
"asn1.js": "^5.0.1",
"bn.js": "^4.11.8",
"elliptic": "^6.4.1"
},
"devDependencies": {
"@types/node": "^10.14.6",
"@types/tape": "^4.2.33",
"codecov": "^3.5.0",
"istanbul": "^0.4.5",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"tape": "^4.10.1",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"files": [
"lib/",
"src/",
"*.js",
"README.md"
],
"nyc": {
"cache": false,
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"src/test.ts",
"src/demo.ts"
],
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"reporter": [
"text",
"lcov"
]
}
}