-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.59 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
{
"name": "openapi-specification",
"private": true,
"version": "1.40.0",
"homepage": "https://github.com/woosmap/openapi-specification#readme",
"bugs": {
"url": "https://github.com/woosmap/openapi-specification/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woosmap/openapi-specification.git"
},
"license": "Apache 2.0",
"files": [
"dist/*.json"
],
"type": "commonjs",
"scripts": {
"prebuild": "rimraf dist",
"build": "bazel build //:outputs",
"postbuild": "mkdir -p dist; tar xf bazel-bin/dist.tar -C dist && cp bazel-bin/parameters.yml specification/parameters/_index.yml",
"responses": "bazel run generator/responses:_responses_bin -- --output `pwd`/specification/responses",
"samples": "bazel run generator/requests:_samples_bin -- --output `pwd`/specification/snippets",
"publish:postman": "bazel run generator/postman:_postman_bin",
"test": "bazel test ...",
"watch": "ibazel build ...",
"watch:test": "ibazel test ..."
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.9.3",
"@bazel/bazelisk": "^1.26.0",
"@bazel/buildifier": "^8.2.1",
"@bazel/buildozer": "^8.2.1",
"@bazel/ibazel": "^0.25.0",
"@google/semantic-release-replace-plugin": "^1.2.0",
"@redocly/cli": "^1.34.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/npm": "^9.0.1",
"@types/axios": "^0.14.0",
"@types/glob": "^7.2.0",
"@types/json-schema": "^7.0.11",
"@types/node": "^17.0.38",
"@types/postman-collection": "^3.5.11",
"@types/unist": "^2.0.6",
"@types/yargs": "^17.0.35",
"axios": "^0.27.2",
"call-me-maybe": "^1.0.2",
"clsx": "^2.1.1",
"dir-compare": "^4.0.0",
"fast-safe-stringify": "^2.1.1",
"glob": "^8.0.3",
"js-yaml": "^4.1.1",
"jsonpath-plus": "^6.0.1",
"mdast-builder": "^1.1.1",
"mdast-util-from-markdown": "^0.8.5",
"mdast-util-gfm": "^0.1.2",
"micromark-extension-gfm": "^0.3.3",
"openapi-examples-validator": "^6.0.3",
"openapi-to-postmanv2": "^5.7.0",
"openapi-types": "^12.1.3",
"postman-code-generators": "^1.2.2",
"postman-collection": "^4.1.6",
"prettier": "^2.8.8",
"query-string": "^7.1.1",
"remark-gfm": "^1.0.0",
"remark-html": "^13.0.2",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.0",
"rimraf": "^6.1.2",
"slugify": "^1.6.5",
"tar": "^6.2.1",
"tar-stream": "^3.1.7",
"tmp": "^0.2.5",
"typescript": "5.6.2",
"unified": "^9.2.1",
"yaml": "^2.8.2",
"yargs": "^17.7.2"
},
"pnpm": {
"onlyBuiltDependencies": []
}
}