-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "equality",
"displayName": "equality",
"description": "Evaluate javascript and replace this with the result",
"version": "0.7.2",
"publisher": "javierartero",
"engines": {
"vscode": "^1.12.0"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#503F2F",
"theme": "dark"
},
"homepage": "https://github.com/javierartero/vscode-equality",
"repository": {
"type": "git",
"url": "https://github.com/javierartero/vscode-equality"
},
"categories": [
"Other"
],
"keywords": [
"evalue",
"calculate",
"Faker",
"Chroma",
"Lorem Ipsum"
],
"activationEvents": [
"onCommand:extension.equality"
],
"main": "./out/src/extension",
"contributes": {
"keybindings": [
{
"command": "extension.equality",
"key": "Ctrl+Enter"
}
],
"configuration": {
"type": "object",
"title": "equality configuration",
"properties": {
"equality.symbol": {
"type": [
"string"
],
"default": "=",
"description": "Specifies the symbol to use with equality."
},
"equality.vars": {
"type": [
"object"
],
"default": {
"plugin": "equality"
},
"description": "You can create your own variables in user settings and call them =e.var_name, reload window"
},
"faker.locale": {
"type": [
"string"
],
"default": "en",
"description": "Specifies the local, see the faker.js page for more information"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"chroma-js": "1.4.0",
"faker": "^4.1.0",
"lodash": "4.17.11"
},
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/node": "10.12.9",
"mocha": "^5.2.0",
"typescript": "3.1.6",
"vscode": "1.1.21"
}
}