-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.16 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@netcracker/qubership-apihub-api-processor",
"version": "3.0.3",
"description": "",
"license": "Apache-2.0",
"module": "dist/esm/src/index.js",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/apihub-builder.es.js",
"require": "./dist/cjs/src/index.js"
}
},
"scripts": {
"build:dist": "tsc --module commonjs --outDir dist/cjs && vite build",
"build:web": "vite build",
"performance:build": "vite build --sourcemap=inline -c=vite.performance.config.ts",
"performance:run-inspect": "node --inspect dist/index.es.js",
"development:link": "yarn link && yarn link @netcracker/qubership-apihub-json-crawl && yarn link @netcracker/qubership-apihub-api-unifier && yarn link @netcracker/qubership-apihub-api-diff && yarn link @netcracker/qubership-apihub-graphapi",
"development:unlink": "yarn unlink && yarn unlink @netcracker/qubership-apihub-json-crawl && yarn unlink @netcracker/qubership-apihub-api-unifier && yarn unlink @netcracker/qubership-apihub-api-diff && yarn unlink @netcracker/qubership-apihub-graphapi",
"unit-test:local": "jest -c jest.config.ts --verbose",
"unit-test:ci": "jest -c jest.config.ts --verbose --maxWorkers 3",
"profile:test": "node ./test/profile.js",
"operation:test": "node ./test/operation.js",
"profile": "node --inspect-brk ./test/profile.js",
"test:coverage": "jest --verbose --coverage",
"feature-start": "feature-start --featureName",
"feature-finish": "feature-finish",
"release-start": "release-start",
"release-finish": "release-finish"
},
"dependencies": {
"@netcracker/qubership-apihub-api-diff": "1.0.3",
"@netcracker/qubership-apihub-api-unifier": "1.0.3",
"@netcracker/qubership-apihub-json-crawl": "1.0.2",
"@netcracker/qubership-apihub-graphapi": "1.0.3",
"adm-zip": "^0.5.10",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"allof-merge": "0.5.1",
"api-ref-bundler": "0.4.0",
"fast-equals": "5.0.1",
"graphql": "16.9.0",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"object-hash": "^3.0.0",
"slug": "^8.2.3",
"swagger2openapi": "^7.0.8"
},
"devDependencies": {
"@netcracker/qubership-apihub-npm-gitflow": "1.0.13",
"@types/adm-zip": "^0.5.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.0",
"@types/object-hash": "^3.0.2",
"@types/slug": "^5.0.3",
"@types/swagger2openapi": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"adm-zip": "^0.5.10",
"axios": "^1.4.0",
"eslint": "^8.22.0",
"eslint-plugin-sort-exports": "^0.8.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"openapi-types": "^12.1.0",
"ts-jest": "29.1.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.6.2",
"vite": "4.5.0",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-singlefile": "^2.0.1",
"vite-plugin-target": "^0.1.1"
},
"eslintConfig": {
"extends": ".eslintrc.json"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}