-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.36 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.36 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@gleif-it/vlei-verifier-workflows",
"version": "0.1.1",
"description": "Workflows for vLEI users and vLEI credentials for the vLEI-verifier service",
"license": "Apache-2.0",
"type": "module",
"access": "public",
"repository": {
"type": "git",
"url": "git+https://github.com/GLEIF-IT/vlei-verifier-workflows.git"
},
"keywords": [
"GLEIF",
"LEI",
"vLEI",
"vLEI-verifier",
"vLEI-verifier-workflows"
],
"bugs": {
"url": "https://github.com/GLEIF-IT/vlei-verifier-workflows/issues"
},
"homepage": "https://github.com/GLEIF-IT/vlei-verifier-workflows#readme",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/types/index.d.ts",
"typesVersions": {
"<=4.9": {
"*": [
"dist/cjs/types/*"
]
},
">=5.0": {
"*": [
"dist/esm/types/*"
]
}
},
"files": [
"dist/**/*"
],
"scripts": {
"clean": "del-cli ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./build/configs/tsconfig.esm.json && npx echo-cli '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p ./build/configs/tsconfig.cjs.json && npx echo-cli '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"test": "jest test/",
"test:full": "npm run project-checker && npm run build && npm run docker:up && npm test && npm run compatibility-checker && npm run package-checker && npm run docker:down",
"docker:up": "npm run docker:down && docker compose up -d",
"docker:down": "docker compose down -v",
"linter": "npx eslint src test",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose",
"formatter:fix": "prettier --write .",
"formatter": "prettier --check .",
"dependency-checker": "npx depcheck --ignores='buffer, @typescript-eslint/eslint-plugin, @typescript-eslint/parser'",
"project-checker": "npm install && npm run formatter && npm run linter && npm run dependency-checker",
"compatibility-checker": "./build/test/package/check-compatibility.sh",
"package-checker": "npm pack --dry-run",
"publish:dev": "npm version prerelease --preid=dev && npm publish --access public --tag dev && npm dist-tag add $(node -p \"require('./package.json').name + '@' + require('./package.json').version\") latest"
},
"dependencies": {
"buffer": "^6.0.3",
"js-yaml": "^4.1.0",
"mathjs": "^12.4.0",
"signify-ts": "^0.3.0-rc1",
"vlei-verifier-client": "0.1.8-dev1"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"del-cli": "^6.0.0",
"depcheck": "^1.4.7",
"echo-cli": "^2.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.6",
"typescript": "^5.2.2",
"typescript-eslint": "^8.24.1"
},
"overrides": {
"glob": "^9.0.0"
}
}