generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
73 lines (73 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
{
"name": "@finos/calm-shared",
"version": "0.2.2",
"description": "A set of tools for interacting with the Common Architecture Language Model (CALM)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": true,
"scripts": {
"build": "tsc",
"watch": "tsc -watch -p ./",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"test": "jest --verbose",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"dependency-check": "dependency-check --project 'calm-shared' --scan . --out ./dependency-check-report --format ALL --suppression ../.github/node-cve-ignore-list.xml"
},
"eslintConfig": {
"extends": "../.eslintrc.json"
},
"keywords": [
"cli",
"validation"
],
"author": "",
"license": "ISC",
"module": "commonjs",
"type": "commonjs",
"dependencies": {
"@stoplight/spectral-cli": "^6.13.1",
"@stoplight/spectral-core": "^1.19.1",
"@stoplight/spectral-functions": "^1.9.3",
"@viz-js/viz": "^3.9.0",
"ajv": "^8.12.0",
"copyfiles": "^2.4.1",
"graphviz-cli": "^2.0.0",
"js-yaml": "^4.1.0",
"json-pointer": "^0.6.2",
"jsonpath-plus": "^10.0.0",
"junit-report-builder": "^5.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"string-table": "^0.1.5",
"ts-graphviz": "^2.1.1",
"winston": "^3.14.1"
},
"devDependencies": {
"@stoplight/types": "^14.1.1",
"@types/fetch-mock": "^7.3.8",
"@types/jest": "^29.5.13",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.34",
"@types/junit-report-builder": "^3.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.13.0",
"fetch-mock": "^9.11.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "^5.4.3"
},
"overrides": {
"path-to-regexp": "3.3.0",
"rollup": "4.27.2",
"jsonpath-plus": "^10.2.0"
}
}