-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.89 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.89 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@azure/oad",
"version": "0.12.3",
"author": {
"name": "Microsoft Corporation",
"email": "azsdkteam@microsoft.com",
"url": "https://github.com/Azure/openapi-diff"
},
"description": "OpenApi Specification Diff tool",
"license": "MIT",
"dependencies": {
"@ts-common/fs": "0.2.0",
"@ts-common/iterator": "0.3.6",
"@ts-common/json": "0.3.1",
"@ts-common/json-parser": "0.9.0",
"@ts-common/source-map": "0.5.0",
"@ts-common/string-map": "0.3.0",
"autorest": "^3.6.1",
"js-yaml": "^4.1.0",
"json-pointer": "0.6.2",
"json-refs": "^3.0.15",
"lodash": "^4.17.21",
"source-map": "0.7.6",
"tslib": "^2.6.3",
"winston": "^3.13.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.30",
"@types/node": "^20.0.0",
"@types/yargs": "^15.0.19",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jest": "^30.1.3",
"prettier": "3.8.1",
"ts-jest": "^29.1.4",
"typescript": "~5.9.2",
"typescript-eslint": "^8.56.0"
},
"homepage": "https://github.com/Azure/openapi-diff",
"repository": {
"type": "git",
"url": "https://github.com/Azure/openapi-diff.git"
},
"bugs": {
"url": "https://github.com/Azure/openapi-diff/issues"
},
"overrides": {
"test-exclude": {
"glob": "^9.3.5"
},
"superagent": "^10.2.3"
},
"engines": {
"node": ">=20.19.0"
},
"files": [
"dist/lib",
"dist/index.*",
"dist/cli.*",
"dlls",
"src/index.ts",
"src/cli.ts",
"src/lib",
"template/*",
"package.json",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"oad": "./dist/cli.js"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testMatch": [
"**/*[tT]est.ts"
],
"testTimeout": 100000
},
"scripts": {
"dn.clean": "dotnet clean openapi-diff/OpenApiDiff.sln",
"dn.restore": "dotnet restore openapi-diff/OpenApiDiff.sln",
"dn.build": "npm run dn.clean && npm run dn.restore && dotnet build -c release openapi-diff/OpenApiDiff.sln /nologo /clp:NoSummary",
"dn.publish": "npm run dn.build && dotnet publish -c release openapi-diff/src/core/OpenApiDiff/OpenApiDiff.csproj",
"dn.test": "npm run dn.build && dotnet test openapi-diff/src/modeler/AutoRest.Swagger.Tests/AutoRest.Swagger.Tests.csproj",
"tsc": "tsc",
"ts.test": "jest",
"test": "npm run dn.test && npm run ts.test",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"prettier": "prettier . --check --end-of-line auto",
"prettier:debug": "prettier . --check --end-of-line auto --log-level debug",
"prettier:write": "prettier . --end-of-line auto --write",
"prepack": "npm ci && npm run dn.publish && tsc"
}
}