-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.52 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
{
"name": "@netcracker/qubership-apihub-api-diff",
"version": "3.0.1",
"module": "./dist/index.es.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"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",
"build": "vite build",
"performance:run-inspect": "vite build --sourcemap=inline -c=vite.performance.config.ts && node --inspect dist/index.es.mjs",
"development:link": "npm link && npm link @netcracker/qubership-apihub-json-crawl && npm link @netcracker/qubership-apihub-graphapi && npm link @netcracker/qubership-apihub-api-unifier && npm link @netcracker/qubership-apihub-compatibility-suites",
"development:unlink": "npm unlink && npm unlink @netcracker/qubership-apihub-json-crawl && npm unlink @netcracker/qubership-apihub-graphapi && npm unlink @netcracker/qubership-apihub-api-unifier && npm unlink @netcracker/qubership-apihub-compatibility-suites",
"test": "jest --maxWorkers 3 --verbose",
"test:compatibility-suites": "jest --detectOpenHandles test/compatibility-suites",
"test:human-readable": "jest --detectOpenHandles test/human-readable",
"update-lock-file": "update-lock-file @netcracker"
},
"dependencies": {
"@netcracker/qubership-apihub-api-unifier": "dev",
"@netcracker/qubership-apihub-json-crawl": "1.2.0",
"fast-equals": "6.0.0"
},
"devDependencies": {
"@netcracker/qubership-apihub-compatibility-suites": "dev",
"@netcracker/qubership-apihub-graphapi": "1.0.9",
"@netcracker/qubership-apihub-npm-gitflow": "3.1.0",
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/node": "25.0.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-plugin-sort-exports": "0.9.1",
"fast-json-patch": "3.1.1",
"graphql": "16.12.0",
"jest": "30.2.0",
"jest-extended": "7.0.0",
"js-yaml": "4.1.1",
"openapi-types": "12.1.3",
"rimraf": "6.1.2",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vite-plugin-singlefile": "2.3.0"
},
"eslintConfig": {
"extends": ".eslintrc.json"
}
}