forked from aeschli/vscode-css-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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": "vscode-css-formatter",
"displayName": "CSS Formatter",
"description": "Formatter for CSS",
"version": "1.0.2",
"publisher": "aeschli",
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"keywords": [
"multi-root ready"
],
"categories": [
"Formatters"
],
"capabilities": {
"virtualWorkspaces": true
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aeschli/vscode-css-formatter/issues",
"email": "martinae@microsoft.com"
},
"homepage": "https://github.com/aeschli/vscode-css-formatter/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/aeschli/vscode-css-formatter"
},
"engines": {
"vscode": "^1.40.0"
},
"activationEvents": [
"onLanguage:css"
],
"main": "./dist/extension-node",
"browser": "./dist/extension-web",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"test": "npm run compile && npm run test-node && npm run test-web",
"test-node": "node ./dist/test/runTest.js",
"test-web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=./dist/test/suite/index-web",
"package": "webpack --mode production --devtool hidden-source-map",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/vscode": "^1.40.0",
"@types/webpack-env": "^1.16.0",
"@types/glob": "^7.1.4",
"js-beautify": "^1.14.0",
"typescript": "^4.4.2",
"ts-loader": "^9.2.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"mocha": "^8.2.1",
"glob": "^7.1.7",
"@vscode/test-electron": "^1.6.2",
"@vscode/test-web": "^0.0.8",
"assert": "^2.0.0",
"process": "^0.11.10"
}
}