forked from torusresearch/eccrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.9 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.9 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
{
"name": "@layertwolabs/eccrypto",
"version": "3.0.0",
"description": "JavaScript Elliptic curve cryptography library, includes fix to browser.js so that encrypt/decrypt works",
"main": "./dist/eccrypto.cjs.js",
"module": "./dist/eccrypto.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "torus-scripts build",
"release": "torus-scripts release",
"test": "ECCRYPTO_NO_FALLBACK=1 mocha && karma start",
"m": "mocha",
"k": "karma start",
"kc": "karma start --browsers Chromium",
"kf": "karma start --browsers Firefox"
},
"repository": {
"type": "git",
"url": "https://github.com/Ash-L2L/eccrypto.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"ecc",
"ecdsa",
"ecdh",
"ecies",
"crypto",
"cryptography",
"secp256k1",
"K-256",
"elliptic",
"curve"
],
"author": "Layer Two Labs",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Ash-L2L/eccrypto/issues"
},
"homepage": "https://github.com/Ash-L2L/eccrypto",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/runtime": "^7.21.5",
"@toruslabs/eslint-config-typescript": "^2.0.0",
"eslint-plugin-chai-expect": "^3.0.0",
"@toruslabs/torus-scripts": "^4.0.0",
"@types/elliptic": "^6.4.14",
"browserify": "^17.0.0",
"buffer-equal": "^1.0.1",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"karma": "^6.4.2",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"mocha": "^10.2.0"
},
"dependencies": {
"elliptic": "^6.5.4"
},
"engines": {
"node": ">=16.18.1",
"npm": ">=8.x"
}
}