-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"repository": {
"type": "git",
"url": "https://github.com/mhansen/hledger-vscode.git"
},
"name": "hledger-vscode",
"displayName": "hledger-vscode",
"description": "Language support for HLedger accounting journals.",
"version": "0.0.12",
"publisher": "mark-hansen",
"engines": {
"vscode": "^1.14.0"
},
"scripts": {
"test": "mocha -r ts-node/register tests/test.ts",
"goldens": "ts-node tests/main.ts"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "hledger",
"aliases": [
"HLedger",
"hledger"
],
"extensions": [
".hledger",
".journal",
".journal.txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hledger",
"scopeName": "source.hledger",
"path": "./syntaxes/hledger.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"minimist": "^1.2.8",
"mocha": "^10.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.0.0"
}
}