-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 941 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
{
"name": "key-conversion",
"version": "2.0.0",
"description": "key conversion tools for key, between der and pem",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wangmmx/key-conversion.git"
},
"keywords": [
"key",
"convert",
"secp256k1",
"secp384r1",
"pem",
"hex",
"der",
"asn1",
"decode",
"encode",
"privateKey",
"publicKey"
],
"author": "Wangmmx",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wangmmx/key-conversion/issues"
},
"homepage": "https://github.com/Wangmmx/key-conversion#readme",
"dependencies": {
"asn1.js": "^5.4.1",
"buffer": "^6.0.2",
"elliptic": "^6.5.3",
"mocha": "^3.1.0"
}
}