-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
80
81
82
{
"name": "crumbl-signer",
"description": "Signer server for the Crumbl platform",
"version": "1.4.5",
"main": "dist/src/typescript/index.js",
"types": "dist/src/typescript/index.d.ts",
"scripts": {
"compile": "eslint src/**/*.ts && tsc",
"fix": "eslint src/**/*.ts --fix",
"test": "eslint test/**/*.ts && mocha 'test/typescript/**/*.spec.ts' --require ts-node/register",
"fix-test": "eslint test/**/*.ts --fix",
"start": "tsc && node ./dist/src/typescript/index.js"
},
"keywords": [
"crypto",
"cryptography",
"crumbl",
"blockchain",
"consent",
"third-party"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyrildever/crumbl-signer.git"
},
"author": "Cyril Dever <[email protected]>",
"license": "BSD-2-Clause-Patent",
"bugs": {
"url": "https://github.com/cyrildever/crumbl-signer#issues"
},
"homepage": "https://github.com/cyrildever/crumbl-signer#readme",
"dependencies": {
"bip32": "^4.0.0",
"buffer-xor": "^2.0.2",
"compression": "^1.7.4",
"config": "^3.3.12",
"cors": "^2.8.5",
"crumbl-js": "^6.4.3",
"ecies-geth": "^1.7.3",
"express": "^4.21.1",
"feistel-cipher": "^1.5.13",
"fp-ts": "^2.16.9",
"helmet": "^8.0.0",
"io-ts": "^2.2.21",
"log4js": "^6.9.1",
"mongodb": "~5.9.2",
"seedrandom": "3.0.5",
"tiny-secp256k1": "^2.2.3",
"ts-utls": "^1.5.26",
"uuidv4": "^6.2.13"
},
"peerDependencies": {
"blakejs": "^1.2.1",
"keccak": "^3.0.4",
"path-to-regexp": "^0.1.11",
"sha3": "^2.1.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/chai": "^4.3.19",
"@types/compression": "^1.7.5",
"@types/config": "3.3.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"blakejs": "^1.2.1",
"chai": "^4.5.0",
"eslint": "^9.13.0",
"eslint-plugin-no-loops": "~0.4.0",
"globals": "^15.11.0",
"keccak": "^3.0.4",
"mocha": "^10.7.3",
"path-to-regexp": "^0.1.11",
"sha3": "^2.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}