-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.1 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
{
"name": "css-minify",
"displayName": "css-minify",
"description": "A CSS minifier that doesn't hurt",
"version": "0.1.13",
"publisher": "DiegoMolina",
"repository": {
"url": "https://github.com/DracotMolver/CSS-minify"
},
"icon": "images/css-minify.jpg",
"bugs": {
"url": "https://github.com/DracotMolver/CSS-minify",
"email": "dracotm25@gmail.com"
},
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.minify"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.minify",
"title": "CSS minify"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@types/vscode": "^1.49.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"sinon": "^9.2.0",
"typescript": "^4.0.3",
"vscode-test": "^1.4.0"
}
}