-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 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
{
"name": "@netcracker/qubership-apihub-api-unifier",
"version": "1.0.3",
"description": "Tools for JsonSchema/Openapi/GraphQL spec for unified processing",
"module": "./dist/index.es.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint:check": "eslint -c .eslintrc.json . --ext .js,.cjs,.ts,.json --ignore-path .gitignore --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "npm run lint:check -- --fix",
"prebuild": "rimraf ./dist",
"build": "vite build",
"performance:run-inspect": "vite build --sourcemap=inline -c=vite.performance.config.ts && node --inspect dist/index.es.mjs",
"development:link": "yarn link && yarn link @netcracker/qubership-apihub-json-crawl && yarn link @netcracker/qubership-apihub-graphapi",
"development:unlink": "yarn unlink && yarn unlink @netcracker/qubership-apihub-json-crawl && yarn unlink @netcracker/qubership-apihub-graphapi",
"test": "jest --verbose --maxWorkers 3",
"test:coverage": "jest --verbose --coverage",
"feature-start": "feature-start --featureName",
"feature-finish": "feature-finish",
"release-start": "release-start",
"release-finish": "release-finish"
},
"keywords": [
"json",
"schema",
"json-schema",
"jsonschema",
"openapi",
"swagger",
"allof",
"merge",
"resolve",
"simplify"
],
"dependencies": {
"@netcracker/qubership-apihub-json-crawl": "1.0.2",
"object-hash": "3.0.0",
"fast-equals": "4.0.3"
},
"devDependencies": {
"@netcracker/qubership-apihub-graphapi": "1.0.3",
"@netcracker/qubership-apihub-npm-gitflow": "1.0.13",
"@types/object-hash": "3.0.6",
"@types/jest": "29.5.2",
"@types/js-yaml": "4.0.5",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.48.0",
"graphql": "16.9.0",
"jest": "29.5.0",
"jest-extended": "4.0.2",
"js-yaml": "4.1.0",
"openapi-types": "12.1.3",
"json-schema-merge-allof": "0.8.1",
"rimraf": "5.0.5",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"ts-node": "10.7.0",
"tslint": "6.1.2",
"typescript": "5.1.3",
"vite": "4.5.0",
"vite-plugin-dts": "3.6.4",
"vite-plugin-singlefile": "2.0.1",
"vite-plugin-target": "0.1.1"
},
"packageManager": "[email protected]"
}