-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 956 Bytes
/
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
{
"name": "firebase-json",
"displayName": "Firebase Configuration Schema",
"description": "Adds json schema for firebase.json files, enabling auto completion and suggestion",
"version": "1.3.0",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/damphat/firebase-json.git"
},
"author": "Phat <[email protected]>",
"license": "MIT",
"publisher": "damphat",
"engines": {
"vscode": "^1.22.0"
},
"scripts": {
"generate": "echo deprecated: typescript-json-schema --strictNullChecks --required --noExtraProps src/firebaseConfig.ts FirebaseConfig > schema/firebase-config.json",
"package": "npm run generate && vsce package"
},
"categories": [
"Other"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": "firebase.json",
"url": "./schemas/firebase-config.json"
}
]
},
"devDependencies": {
"typescript-json-schema": "^0.53.0"
}
}