forked from ecies/js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "eciesjs",
"description": "Elliptic Curve Integrated Encryption Scheme for secp256k1",
"license": "MIT",
"author": {
"name": "Weiliang Li",
"email": "[email protected]",
"url": "https://github.com/kigawas"
},
"keywords": [
"secp256k1",
"crypto",
"elliptic curves",
"ecies",
"bitcoin",
"ethereum",
"cryptocurrency"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc",
"test": "nyc -r lcov -e .ts mocha -r ts-node/register tests/**/*.test.ts && nyc report --reporter=json"
},
"repository": {
"type": "git",
"url": "https://github.com/commerceblock/eciesjs.git"
},
"version": "0.3.16",
"dependencies": {
"@types/secp256k1": "^4.0.3",
"buffer": "^6.0.3",
"futoin-hkdf": "^1.5.1",
"secp256k1": "^4.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"axios": "^0.27.2",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}