-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vscode-zoneinfo",
"displayName": "Zoneinfo",
"description": "Syntax highlighting for IANA time zone database files (a.k.a zoneinfo files)",
"version": "3.1.2",
"license": "MIT",
"publisher": "gilmoreorless",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"tz",
"tzdb",
"tzdata",
"tzinfo",
"time zone",
"olson"
],
"bugs": {
"url": "https://github.com/gilmoreorless/vscode-zoneinfo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gilmoreorless/vscode-zoneinfo.git"
},
"homepage": "https://github.com/gilmoreorless/vscode-zoneinfo/blob/main/README.md",
"main": "./out/src/extension",
"activationEvents": [
"onLanguage:zoneinfo"
],
"contributes": {
"languages": [
{
"id": "zoneinfo",
"aliases": [
"Zoneinfo",
"zoneinfo",
"tz",
"tzdata",
"tzinfo"
],
"filenames": [
"africa",
"antarctica",
"asia",
"australasia",
"backward",
"backzone",
"etcetera",
"europe",
"factory",
"leapseconds",
"northamerica",
"pacificnew",
"southamerica",
"systemv",
"iso3166.tab",
"leap-seconds.list",
"zone.tab",
"zone1970.tab"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "zoneinfo",
"scopeName": "text.zoneinfo",
"path": "./syntaxes/zoneinfo.tmLanguage"
}
],
"configurationDefaults": {
"[zoneinfo]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8
}
}
},
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts && prettier --check src test",
"lint:fix": "eslint . --ext .ts --fix && prettier --write src test",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"version": "sed -i '' -e \"s/Unreleased/$npm_package_version - $(date +'%Y-%m-%d')/\" CHANGELOG.md && git add CHANGELOG.md",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"glob": "^7.1.6",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"typescript": "^4.0.5",
"vscode-test": "^1.4.1"
}
}