-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
102 lines (102 loc) · 3.01 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@azure/oad",
"version": "0.10.13",
"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",
"acorn": "^5.7.4",
"autorest": "^3.6.1",
"glob": "^7.1.3",
"js-yaml": "^3.13.1",
"json-pointer": "^0.6.2",
"json-refs": "^3.0.15",
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"request": "^2.88.0",
"set-value": "^4.1.0",
"source-map": "^0.7.4",
"tslib": "^2.6.3",
"winston": "^3.13.0",
"yargs": "^13.2.2",
"yargs-parser": "^13.1.2"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^3.12.1",
"@types/json-pointer": "^1.0.30",
"@types/node": "^18.11.9",
"@types/request": "^2.48.1",
"@types/yargs": "^13.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"typescript": "~5.4.5",
"typescript-eslint": "^7.13.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"
},
"engines": {
"node": ">=18.0.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"
}
}