-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.69 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
{
"name": "@netcracker/qubership-apihub-api-diff",
"version": "1.0.4",
"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",
"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 --findRelatedTests --detectOpenHandles test/compatibility-suites/*",
"test:human-readble": "jest --findRelatedTests --detectOpenHandles test/human-readable/*",
"feature-start": "feature-start --featureName",
"feature-finish": "feature-finish",
"release-start": "release-start",
"release-finish": "release-finish"
},
"dependencies": {
"@netcracker/qubership-apihub-api-unifier": "1.0.4",
"@netcracker/qubership-apihub-json-crawl": "1.0.4",
"fast-equals": "4.0.3"
},
"devDependencies": {
"@netcracker/qubership-apihub-compatibility-suites": "2.0.3",
"@netcracker/qubership-apihub-graphapi": "1.0.8",
"@netcracker/qubership-apihub-npm-gitflow": "2.2.2",
"@types/jest": "29.5.11",
"@types/node": "20.11.6",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-plugin-sort-exports": "0.8.0",
"jest": "29.7.0",
"jest-extended": "^4.0.2",
"openapi-types": "12.1.3",
"@types/js-yaml": "^4.0.5",
"fast-json-patch": "^3.1.1",
"graphql": "16.9.0",
"js-yaml": "^4.1.0",
"rimraf": "^5.0.5",
"ts-loader": "^8.4.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"ts-jest": "29.1.1",
"typescript": "5.3.3",
"vite": "5.2.6",
"vite-plugin-dts": "3.6.4",
"vite-plugin-singlefile": "2.0.1"
},
"eslintConfig": {
"extends": ".eslintrc.json"
}
}