about summary refs log tree commit diff
path: root/pkgs/by-name/sp/spectral-language-server/package.json
blob: 1f3651349c62a76561e4caefe5c570b2fabf9431 (plain) (blame)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
  "activationEvents": [
    "onStartupFinished"
  ],
  "author": "Stoplight <support@stoplight.io>",
  "bugs": {
    "url": "https://github.com/stoplightio/vscode-spectral/issues"
  },
  "categories": [
    "Linters"
  ],
  "contributes": {
    "configuration": {
      "properties": {
        "spectral.enable": {
          "default": true,
          "description": "Controls whether or not Spectral is enabled.",
          "scope": "resource",
          "type": "boolean"
        },
        "spectral.rulesetFile": {
          "description": "Location of the ruleset file to use when validating. If omitted, the default is a .spectral.yml/.spectral.json in the same folder as the document being validated. Paths are relative to the workspace. This can also be a remote HTTP url.",
          "scope": "resource",
          "type": "string"
        },
        "spectral.run": {
          "default": "onType",
          "description": "Run the linter on save (onSave) or as you type (onType).",
          "enum": [
            "onSave",
            "onType"
          ],
          "scope": "resource",
          "type": "string"
        },
        "spectral.trace.server": {
          "default": "off",
          "description": "Traces the communication between VS Code and the language server.",
          "enum": [
            "off",
            "messages",
            "verbose"
          ],
          "scope": "window",
          "type": "string"
        },
        "spectral.validateFiles": {
          "description": "An array of file globs (e.g., `**/*.yaml`) in minimatch glob format which should be validated by Spectral. If language identifiers are also specified, the file must match both in order to be validated. You can also use negative file globs (e.g., `!**/package.json`) here to exclude files.",
          "items": {
            "type": "string"
          },
          "scope": "resource",
          "type": "array"
        },
        "spectral.validateLanguages": {
          "default": [
            "json",
            "yaml"
          ],
          "description": "An array of language IDs which should be validated by Spectral. If file globs are also specified, the file must match both in order to be validated.",
          "items": {
            "type": "string"
          },
          "scope": "resource",
          "type": "array"
        }
      },
      "title": "Spectral",
      "type": "object"
    },
    "commands": [
      {
        "title": "Show Output Channel",
        "category": "Spectral",
        "command": "spectral.showOutputChannel"
      }
    ]
  },
  "description": "JSON/YAML linter with OpenAPI and custom ruleset support.",
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/chai-jest-snapshot": "^1.3.6",
    "@types/glob": "^7.2.0",
    "@types/mocha": "^9.1.0",
    "@types/node": "^18.11.18",
    "@types/vscode": "^1.48.0",
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.1.0",
    "chai": "^4.2.0",
    "chai-jest-snapshot": "^2.0.0",
    "copyfiles": "^2.4.1",
    "cross-env": "^7.0.3",
    "eslint": "^7.8.1",
    "eslint-config-google": "^0.14.0",
    "glob": "^8.0.3",
    "http-test-servers": "^2.0.0",
    "merge-options": "^3.0.0",
    "mocha": "^8.1.3",
    "rimraf": "^3.0.2",
    "semver": "^7.3.2",
    "shelljs": "^0.8.5",
    "ts-loader": "^9.2.8",
    "ts-node": "^8.10.2",
    "typescript": "beta",
    "vsce": "^1.103.1",
    "vscode-test": "^1.5.0",
    "webpack": "^5.72.0",
    "webpack-cli": "^4.9.2"
  },
  "displayName": "Spectral",
  "engines": {
    "vscode": "^1.48.0",
    "node": "^12.20 || >= 14.13"
  },
  "homepage": "https://github.com/stoplightio/vscode-spectral",
  "icon": "icon.png",
  "keywords": [
    "linter",
    "validator",
    "OpenAPI",
    "Swagger",
    "API",
    "style guide",
    "API description",
    "API specification",
    "OAS",
    "OAS2",
    "OAS3",
    "AsyncAPI",
    "json",
    "yaml"
  ],
  "license": "Apache-2.0",
  "main": "./client/index.js",
  "name": "spectral",
  "private": true,
  "publisher": "stoplight",
  "repository": {
    "type": "git",
    "url": "https://github.com/stoplightio/vscode-spectral"
  },
  "scripts": {
    "clean": "rimraf dist && rimraf \"{server,client}/dist\"",
    "lint": "eslint --ext .ts,.js .",
    "test": "mocha -r ts-node/register \"./+(client|server)/__tests__/unit/**/*.test.ts\"",
    "test:e2e": "cross-env CI=true CHAI_JEST_SNAPSHOT_UPDATE_ALL=false ts-node ./client/src/__tests__/e2e/index.ts"
  },
  "version": "1.1.2",
  "workspaces": {
    "packages": [
      "client",
      "server"
    ],
    "nohoist": [
      "client/**",
      "server/**"
    ]
  }
}