-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.94 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
{
"description": "Language Support for HeatStudio, OpenStudio and EnergyPlus files",
"displayName": "Kary IDF",
"icon": "icon.png",
"main": "./dist/extension.js",
"name": "idf",
"publisher": "karyfoundation",
"version": "3.0.0",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:energyplus"
],
"contributes": {
"languages": [
{
"id": "energyplus",
"aliases": [
"EnergyPlus",
"OpenStudio",
"HeatStudio"
],
"extensions": [
".idf",
".osm",
".hstb",
".19",
".heatstudio"
]
}
],
"grammars": [
{
"language": "energyplus",
"path": "./syntaxes/idf.tmLanguage.json",
"scopeName": "source.idf"
}
]
},
"scripts": {
"compile": "webpack",
"lint": "eslint src --ext ts",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run test-compile && npm run lint",
"test": "node ./out/test/runTest.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run package",
"watch": "webpack --watch"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pouyakary/idf-vscode.git"
},
"__metadata": {
"id": "0b2fe72b-6e7c-461b-9062-7652f7642ecb",
"publisherDisplayName": "Pouya Kary",
"publisherId": "00c37c0d-e370-4cc2-8ab3-3fa32a26514a"
},
"dependencies": {
"idf-formatter": "^1.1.3"
}
}