-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "@toruslabs/eccrypto",
"version": "6.0.0",
"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",
"lint": "eslint --fix 'src/**/*.ts'",
"release": "torus-scripts release",
"test:ci": "npm run test:node && npm run test:browsers",
"test:node": "vitest run --config test/configs/node.config.mts --coverage",
"test:chrome": "vitest run --config test/configs/chrome.config.mts --coverage",
"test:firefox": "vitest run --config test/configs/firefox.config.mts --coverage",
"test:safari": "vitest run --config test/configs/safari.config.mts --coverage",
"test:browsers": "npm run test:chrome && npm run test:firefox && npm run test:safari"
},
"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/runtime": "^7.26.0",
"@toruslabs/config": "^3.0.0",
"@toruslabs/eslint-config-node": "^4.0.2",
"@toruslabs/eslint-config-typescript": "^4.0.2",
"@toruslabs/torus-scripts": "^7.0.2",
"@types/buffer-equal": "^1.0.2",
"@types/elliptic": "^6.4.18",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-istanbul": "^2.1.8",
"browserify": "^17.0.1",
"buffer-equal": "^1.0.1",
"eslint": "^9.17.0",
"playwright": "^1.49.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.x",
"npm": ">=9.x"
},
"dependencies": {
"elliptic": "^6.6.1"
}
}