forked from roblourens/vscode-stocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
69
70
{
"name": "vscode-stocks-cn",
"displayName": "Stocks",
"description": "Watch stock prices from the VS Code status bar",
"version": "0.1.5",
"publisher": "loskael",
"repository": {
"type": "git",
"url": "https://github.com/loskael/vscode-stocks"
},
"bugs": {
"url": "https://github.com/loskael/vscode-stocks/issues"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"icon": "images/icon.png",
"contributes": {
"configuration": {
"properties": {
"vscode-stocks.stockSymbols": {
"type": "array",
"default": [],
"description": "The list of stock symbols to display in the status bar"
},
"vscode-stocks.useColors": {
"type": "boolean",
"default": false,
"description": "If true, highlights items red when they're down and green when they're up"
},
"vscode-stocks.colorStyle": {
"type": "array",
"default": [
"red",
"green",
"white"
],
"description": "The stock quote color style [↑, ↓, -]"
},
"vscode-stocks.refreshInterval": {
"type": "number",
"default": 60000,
"description": "The stock quote refresh interval (ms)"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"iconv-lite": "^0.4.24"
}
}