-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.12 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "abriand-snt",
"displayName": "ABriand SNT",
"description": "Pack d'extension à destination des élèves de SNT du lycée Aristide Briand.",
"version": "0.3.0",
"author": {
"name": "Frank SAURET",
"email": "frank.sauret.prof@gmail.com",
"url": "http://www.electropol.fr/"
},
"publisher": "electropol-fr",
"repository": {
"type": "git",
"url": "https://github.com/FrankSAURET/abriand-snt"
},
"license": "MIT",
"engines": {
"vscode": "^1.46.0"
},
"icon": "image/LogoAbriandSNT.png",
"galleryBanner": {
"color": "#0065FF",
"theme": "dark"
},
"badges": [
{
"url": "https://badgen.net/github/stars/FrankSAURET/abriand-snt?icon=github",
"href": "https://github.com/FrankSAURET/abriand-snt/stargazers",
"description": "stars"
},
{
"url": "https://badgen.net/github/open-issues/FrankSAURET/abriand-snt?icon=github",
"href": "https://github.com/FrankSAURET/abriand-snt/issues",
"description": "open issues"
},
{
"url": "https://badgen.net/github/last-commit/FrankSAURET/abriand-snt?icon=github",
"href": "https://github.com/FrankSAURET/abriand-snt/commits/master",
"description": "last commit"
},
{
"url": "https://badgen.net/github/forks/FrankSAURET/abriand-snt?icon=github",
"href": "https://marketplace.visualstudio.com/items?itemName=electropol-fr.abriand-snt&ssr=false#overview",
"description": "forks"
},
{
"url": "https://badgen.net/github/license/FrankSAURET/abriand-snt?icon=github",
"href": "https://marketplace.visualstudio.com/items/electropol-fr.abriand-snt/license",
"description": "license"
}
],
"keywords": [
"python",
"french",
"html",
"css",
"microbit",
"snt",
"Education"
],
"categories": [
"Extension Packs",
"Education"
],
"extensionPack": [
"aaron-bond.better-comments",
"christian-kohler.path-intellisense",
"ecmel.vscode-html-css",
"KevinRose.vsc-python-indent",
"MS-CEINTL.vscode-language-pack-fr",
"ms-python.python",
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"royaction.color-manager",
"VisualStudioExptTeam.vscodeintellicode",
"ms-vscode.live-server",
"intellsmi.comment-translate"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "ABriand SNT",
"properties": {
"ABriandSNT.VersionNb": {
"type": "string",
"default": null,
"description": "Donne le numéro de la version de l'extension lors du dernier lancement de la commande « abriand-snt : configurer ». Ne pas le changer manuellement."
}
}
}
],
"commands": [
{
"command": "abriand-snt.configurer",
"category": "ABriand SNT ",
"title": "Configurer vs code pour le travail en SNT."
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.46.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
},
"dependencies": {
"semver": "^7.3.5"
}
}