-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.13 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.13 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
{
"name": "@netcracker/qubership-apihub-api-processor",
"version": "5.1.0",
"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": "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": "npm link && npm link @netcracker/qubership-apihub-json-crawl && npm link @netcracker/qubership-apihub-api-unifier && npm link @netcracker/qubership-apihub-api-diff && npm link @netcracker/qubership-apihub-graphapi",
"development:unlink": "npm unlink && npm unlink @netcracker/qubership-apihub-json-crawl && npm unlink @netcracker/qubership-apihub-api-unifier && npm unlink @netcracker/qubership-apihub-api-diff && npm unlink @netcracker/qubership-apihub-graphapi",
"unit-test:local": "jest -c jest.config.ts --verbose",
"test": "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",
"update-lock-file": "update-lock-file @netcracker"
},
"dependencies": {
"@asyncapi/parser": "^3.0.0",
"@netcracker/qubership-apihub-api-diff": "dev",
"@netcracker/qubership-apihub-api-unifier": "dev",
"@netcracker/qubership-apihub-graphapi": "1.0.9",
"@netcracker/qubership-apihub-json-crawl": "1.2.0",
"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": "3.1.0",
"@types/adm-zip": "0.5.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/mime-types": "^3.0.0",
"@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",
"axios": "^1.4.0",
"eslint": "^8.22.0",
"eslint-plugin-sort-exports": "^0.8.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"mime-types": "^3.0.1",
"openapi-types": "^12.1.0",
"ts-jest": "29.1.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.6.2",
"vite": "5.2.6",
"vite-plugin-dts": "3.6.4",
"vite-plugin-singlefile": "2.0.1",
"vite-plugin-target": "0.1.1"
},
"eslintConfig": {
"extends": ".eslintrc.json"
},
"engines": {
"node": ">=18.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.30.1"
}
}