forked from gleanwork/open-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 Bytes
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
{
"name": "open-api",
"version": "1.0.0",
"private": true,
"description": "Tool to transform OpenAPI YAML specifications",
"keywords": [
"openapi",
"yaml",
"transform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gleanwork/open-api.git"
},
"license": "MIT",
"author": "Glean",
"type": "module",
"main": "src/index.js",
"scripts": {
"diff-source-specs": "node src/diff-source-specs.js",
"lint": "prettier --check . --ignore-unknown",
"lint:fix": "prettier --write . --ignore-unknown",
"test": "vitest run",
"test:all": "pnpm test",
"test:watch": "vitest",
"transform:source_specs": "node src/index.js --source_specs",
"transform:merged_code_samples_specs": "node src/index.js --merged_code_samples_specs"
},
"dependencies": {
"execa": "^9.6.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"prettier": "^3.5.3",
"vitest": "^1.2.0"
}
}