-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "@s25digital/aa-central-registry",
"version": "2.8.1",
"description": "A package to work with Sahamati Central Registry in AA ecosystem",
"main": "dist/index.js",
"files": [
"dist",
"types"
],
"types": "types",
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write .",
"prebuild": "rimraf dist",
"build": "node build.js",
"build:types": "tsc",
"prepublishOnly": "npm run build",
"test": "cross-env TZ=utc DOTENV_CONFIG_PATH=.env.spec mocha -r esbuild-register -r dotenv/config 'test/**/*.spec.ts' --timeout 10000",
"test:coverage": "nyc npm run test",
"preinteg": "npm run build",
"integ": "node -r dotenv/config integ/index.js"
},
"keywords": [
"account-aggregator",
"central registry",
"aa-commons",
"AA"
],
"author": "Simranjeet Singh",
"license": "MIT",
"dependencies": {
"axios": "^1.18.1",
"axios-retry": "^4.5.0",
"date-fns": "^4.4.0",
"jsonwebtoken": "^9.0.3",
"node-cache": "^5.1.2",
"pino": "^10.3.1",
"redis": "^6.0.1",
"rsa-pem-from-mod-exp": "^0.8.6",
"uuid": "^14.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/mocha": "^10.0.10",
"@types/node": "^26.0.1",
"@types/sinon": "^21.0.1",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"chai": "^6.2.2",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"esbuild": "^0.28.1",
"esbuild-register": "^3.6.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"mocha": "^12.0.0",
"nock": "^14.0.16",
"nyc": "^18.0.0",
"prettier": "^3.9.1",
"rimraf": "^6.1.3",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3",
"typescript-json-decoder": "^1.0.11"
}
}