-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.38 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.38 KB
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
90
{
"name": "conda-cheatsheet",
"displayName": "Conda Cheatsheet",
"description": "Open Conda cheatsheet inside the editor",
"version": "1.2.8",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onCommand:extension.openPdf",
"onCommand:extension.openPdf46",
"onCommand:extension.openPdf412",
"onCommand:extension.openPdf414",
"onCommand:extension.openWebsite",
"onCommand:extension.openWebview"
],
"main": "./out/extension.js",
"license": "MIT",
"icon": "asset/icon.png",
"contributes": {
"commands": [
{
"command": "extension.openPdf",
"title": "Conda Cheatsheet: PDF (latest)"
},
{
"command": "extension.openPdf46",
"title": "Conda Cheatsheet: PDF (4.6)"
},
{
"command": "extension.openPdf412",
"title": "Conda Cheatsheet: PDF (4.12)"
},
{
"command": "extension.openPdf414",
"title": "Conda Cheatsheet: PDF (4.14)"
},
{
"command": "extension.openWebsite",
"title": "Conda Cheatsheet: Website"
},
{
"command": "extension.openWebview",
"title": "Conda Cheatsheet: Webview"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jojoee/vscode-conda-cheatsheet"
},
"publisher": "jojoee",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"predeploy": "vsce ls",
"deploy": "vsce publish -p $PAT",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.11.7",
"@types/pug": "^2.0.4",
"@types/vscode": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.6",
"mocha": "^7.2.0",
"pug": "^2.0.4",
"typescript": "^3.7.5",
"vsce": "^2.13.0",
"vscode-test": "^1.3.0"
},
"dependencies": {}
}