-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.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
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
{
"name": "@toruslabs/eccrypto",
"version": "5.0.4",
"description": "JavaScript Elliptic curve cryptography library, includes fix to browser.js so that encrypt/decrypt works",
"main": "./dist/lib.cjs/index.js",
"module": "./dist/lib.esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "torus-scripts build",
"release": "torus-scripts release",
"test": "ECCRYPTO_NO_FALLBACK=1 mocha && karma start",
"test:ci": "ECCRYPTO_NO_FALLBACK=1 mocha && npm run k",
"m": "mocha",
"k": "xvfb-run -a karma start",
"kc": "xvfb-run -a karma start --browsers Chromium",
"kf": "xvfb-run -a karma start --browsers Firefox"
},
"repository": {
"type": "git",
"url": "https://github.com/torusresearch/eccrypto.git"
},
"files": [
"dist"
],
"keywords": [
"ecc",
"ecdsa",
"ecdh",
"ecies",
"crypto",
"cryptography",
"secp256k1",
"K-256",
"elliptic",
"curve"
],
"author": "Torus Labs",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/torusresearch/eccrypto/issues"
},
"homepage": "https://github.com/torusresearch/eccrypto",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/runtime": "^7.25.9",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-node": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.5",
"@types/buffer-equal": "^1.0.2",
"@types/chai": "^4.3.16",
"@types/elliptic": "^6.4.18",
"browserify": "^17.0.1",
"buffer-equal": "^1.0.1",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"karma": "^6.4.4",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webkit-launcher": "^2.6.0",
"mocha": "^10.7.3",
"playwright": "^1.48.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"dependencies": {
"elliptic": "^6.5.7"
}
}