-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.79 KB
/
package.json
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
{
"name": "vscode-pigments",
"description": "Previews colors used inside the editor",
"version": "2.0.0",
"publisher": "jaspernorth",
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "git://github.com/DeMoorJasper/vscode-pigments.git"
},
"contributors": [
{
"name": "Jasper De Moor",
"url": "http://jasperdemoor.me/"
}
],
"icon": "preview.jpg",
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn compile && mocha"
},
"devDependencies": {
"@types/node": "7.0.4",
"typescript": "^2.5.3",
"vsce": "^1.44.0",
"vscode": "^1.1.5",
"mocha": "^6.2.0"
},
"dependencies": {
"tinycolor2": "^1.4.1"
},
"contributes": {
"configuration": {
"title": "pigments",
"properties": {
"pigments.markerType": {
"type": "string",
"default": null,
"description": "Specifies the marker type used to highlight colors."
},
"pigments.enabledExtensions": {
"type": "string",
"default": null,
"description": "Specifies the file extensions to apply this plugin to."
},
"pigments.disabledExtensions": {
"type": "string",
"default": null,
"description": "Specifies the file extensions this plugin should ignore, this overwrites any values in pigments.enabledExtensions (including the defaults)."
}
}
}
}
}