This repository has been archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "vsfire",
"displayName": "Firebase",
"description": "Firestore Security Rules syntax highlighting",
"version": "1.4.1",
"publisher": "toba",
"keywords": [
"firebase",
"firestore",
"rules"
],
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/toba/vsfire.git"
},
"bugs": {
"url": "https://github.com/toba/vsfire/issues"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Programming Languages"
],
"scripts": {
"compile": "tsc -p ./",
"pkgvars": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "jest --coverage"
},
"activationEvents": [
"onLanguage:firerules"
],
"main": "./dist/extension",
"contributes": {
"languages": [
{
"id": "firerules",
"extensions": [
".rules",
".rule"
],
"aliases": [
"Firebase Rules"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "firerules",
"scopeName": "source.firerules",
"path": "./syntaxes/firerules.json"
}
],
"jsonValidation": [
{
"fileMatch": "*.indexes.json",
"url": "./syntaxes/index.schema.json"
}
]
},
"devDependencies": {
"@toba/develop": "^4.4.2",
"@toba/test": "^3.4.1",
"@types/node": "^10.0.0",
"ts-node": "^8.0.0",
"vscode": "^1.1.28"
},
"dependencies": {}
}