-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.3 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
{
"name": "unitconverter",
"displayName": "UnitConverter",
"description": "Converts CSS units",
"version": "1.5.6",
"publisher": "DiegoMolina",
"engines": {
"vscode": "^1.47.0"
},
"repository": {
"url": "https://github.com/DracotMolver/UnitConverter"
},
"icon": "images/unitimg.png",
"bugs": {
"url": "https://github.com/DracotMolver/UnitConverter",
"email": "dracotm25@gmail.com"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.unitConverter"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.unitConverter",
"title": "Unit Converter"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@types/vscode": "^1.47.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"sinon": "^9.1.0",
"typescript": "^4.0.3",
"vscode-test": "^1.4.0"
}
}