-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.28 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
{
"name": "ecies-geth",
"version": "1.8.0",
"description": "JavaScript Elliptic Curve Integrated Encryption Scheme (ECIES) Library - Based off Geth's implementation",
"main": "dist/lib/src/typescript/index.js",
"types": "index.d.ts",
"scripts": {
"compile": "eslint lib/**/*.ts && tsc",
"fix": "eslint lib/**/*.ts --fix",
"test-browser": "tsc && esbuild test/src/typescript/browser.spec.ts --bundle --outfile=dist/test/src/typescript/index.js --platform=browser --format=iife --external:crypto --external:secp256k1 && live-server --port=10001 --mount=/:test/src/typescript",
"test-node": "tsc && esbuild test/src/typescript/node.spec.ts --bundle --outfile=dist/test/node.spec.cjs --platform=node --format=cjs --external:secp256k1 && mocha dist/test/node.spec.cjs",
"test:ci": "tsc && esbuild test/src/typescript/node.spec.ts --bundle --outfile=dist/test/node.spec.cjs --platform=node --format=cjs --external:secp256k1 && mocha dist/test/node.spec.cjs",
"test": "npm run test-node && npm run test-browser",
"fix-test": "eslint test/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyrildever/ecies-geth.git"
},
"keywords": [
"ecies",
"aes-128-ctr",
"crypto",
"cryptography",
"secp256k1",
"elliptic",
"curve",
"ecdsa",
"ecdh",
"go-ethereum"
],
"author": "Cyril Dever <cdever@pep-s.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrildever/ecies-geth/issues"
},
"homepage": "https://github.com/cyrildever/ecies-geth#readme",
"engines": {
"node": ">=14"
},
"dependencies": {
"elliptic": "^6.6.1",
"secp256k1": "^5.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/elliptic": "^6.4.18",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.3",
"@types/secp256k1": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"buffer": "^6.0.3",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"esbuild": "^0.28.0",
"eslint": "^9.39.2",
"eslint-plugin-no-loops": "~0.4.0",
"globals": "^17.0.0",
"mocha": "^11.7.6",
"typescript": "^6.0.3"
}
}