forked from Azure/openapi-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.95 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
103
{
"name": "@azure/oad",
"version": "0.8.5",
"author": {
"name": "Microsoft Corporation",
"email": "[email protected]",
"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": "^2.0.4407",
"glob": "^7.1.3",
"handlebars": "^4.5.3",
"js-yaml": "^3.13.1",
"json-pointer": "^0.6.0",
"json-refs": "^3.0.13",
"kind-of": "^6.0.3",
"lodash": "^4.17.20",
"minimist": "^1.2.3",
"request": "^2.88.0",
"set-value": "^2.0.1",
"source-map": "^0.7.3",
"tslib": "^1.9.3",
"winston": "^2.3.0",
"yargs": "^13.2.2",
"yargs-parser": "^13.1.2"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/js-yaml": "^3.12.1",
"@types/json-pointer": "^1.0.30",
"@types/node": "^11.11.5",
"@types/request": "^2.48.1",
"@types/yargs": "^13.0.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"prettier": "^2.2.1",
"tslint": "~5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"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": ">=10.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": {
"collectCoverage": true,
"collectCoverageFrom": [
"dist/**/*.js"
],
"testMatch": [
"**/*test.js"
]
},
"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 tslint && npm run dn.build && dotnet test openapi-diff/src/modeler/AutoRest.Swagger.Tests/AutoRest.Swagger.Tests.csproj",
"tsc": "tsc",
"ts.test": "tsc && jest",
"test": "npm run dn.test && npm run ts.test",
"prepack": "npm install && npm run dn.publish && tsc",
"tslint": "tslint --project tsconfig.json ./src/**/*.ts ",
"tslint-fix": "tslint --fix --project tsconfig.json ./src/**/*.ts",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
}
}