-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.25 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
{
"name": "js2text",
"description": "Convert JS to Text",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#e1e1e1",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/nkitku/js2text"
},
"bugs": {
"url": "https://github.com/nkitku/js2text/issues"
},
"license": "MIT",
"version": "0.0.3",
"publisher": "nkitku",
"engines": {
"vscode": "^1.1.29"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"eval",
"extension",
"javascript",
"js"
],
"activationEvents": [
"onCommand:extension.js2text",
"onCommand:extension.mathJs2text"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.js2text",
"title": "Convert JS to Text"
},
{
"command": "extension.mathJs2text",
"title": "Convert MathJS to Text"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.29"
},
"dependencies": {
"@types/lodash": "^4.14.120",
"@types/mathjs": "^4.4.5",
"@types/node": "^10.12.24",
"lodash": "^4.17.11",
"mathjs": "^5.4.2"
}
}