Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « vscode-colorize-tests « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ec286b338530b9be78cb311bf326045be635522 (plain)
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
{
  "name": "vscode-colorize-tests",
  "description": "Colorize tests for VS Code",
  "version": "0.0.1",
  "publisher": "vscode",
  "license": "MIT",
  "private": true,
  "activationEvents": [
    "onLanguage:json"
  ],
  "main": "./out/colorizerTestMain",
  "enableProposedApi": true,
  "engines": {
    "vscode": "*"
  },
  "icon": "media/icon.png",
  "scripts": {
    "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-colorize-tests ./tsconfig.json"
  },
  "dependencies": {
    "jsonc-parser": "2.2.1"
  },
  "devDependencies": {
    "@types/node": "^12.19.9"
  },
  "contributes": {
    "semanticTokenTypes": [
      {
        "id": "testToken",
        "description": "A test token"
      }
    ],
    "semanticTokenModifiers": [
      {
        "id": "testModifier",
        "description": "A test modifier"
      }
    ],
    "semanticTokenScopes": [
      {
        "scopes": {
          "testToken": [
            "entity.name.function.special"
          ]
        }
      }
    ],
    "productIconThemes": [
      {
        "id": "Test Product Icons",
        "label": "The Test Product Icon Theme",
        "path": "./producticons/test-product-icon-theme.json",
        "_watch": true
      }
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/vscode.git"
  }
}