-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (47 loc) · 1.28 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
{
"name": "@ozoneapi/ozone-tools",
"version": "1.0.0",
"description": "Open Finance tools for JWT and certificate utilities",
"license": "SEE LICENSE IN LICENSE",
"author": "OzoneAPI",
"type": "commonjs",
"engines": {
"node": ">= 18.0.0"
},
"files": [
"**/*"
],
"scripts": {
"lint": "yarn eslint .",
"lint:fix": "yarn eslint . --fix",
"clean": "rm -rf dist tsconfig.tsbuildinfo node_modules",
"compile": "tsc --project ./tsconfig.json",
"ts": "cd ${OZONE_HOME}/khvafar && yarn run ts-node --project ./tsconfig.json",
"build": "yarn clean && yarn install && yarn run compile",
"pub": "yarn build && yarn publish --prerelease",
"test": "jest",
"test:coverage": "jest --coverage",
"jwks": "ts-node --project ./tsconfig.json src/utils/s3-jwks/Cli.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"ts-node": "~10.9.2",
"yargs": "~17.7.2",
"jose": "~4.15.5",
"@aws-sdk/client-s3": "^3.700.0"
},
"devDependencies": {
"@types/node": "~24.0.2",
"@types/yargs": "~17.0.32",
"typescript": "~5.8.2",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"resolutions": {
}
}