-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "openapi-overlays-js",
"version": "0.2.0",
"description": "Tool to apply OpenAPI overlays, built in NodeJS with a command line interface (CLI).",
"main": "index.js",
"bin": {
"overlayjs": "./index.js"
},
"scripts": {
"test": "node_modules/.bin/jest",
"lint": "eslint . --config .eslintrc.json",
"fmt": "eslint . --config .eslintrc.json --fix"
},
"type": "module",
"author": "Lorna Mitchell <github@lornajane.net>",
"homepage": "https://github.com/lornajane/openapi-overlays-js#readme",
"bugs": "https://github.com/lornajane/openapi-overlays-js/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/lornajane/openapi-overlays-js.git"
},
"license": "Apache2",
"dependencies": {
"@stoplight/yaml": "^4.2.3",
"arg": "^5.0.2",
"jsonpath": "^1.1.1",
"mergician": "^1.0.3",
"openapi-format": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.1"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "node"
}
}