This repository has been archived by the owner on Jul 6, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.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
{
"name": "firebase-configuration-schema",
"displayName": "Firebase Configuration Schema",
"description": "Adds a json schema file for firebase.json files, enabling auto completion",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"commit": "giz cz",
"lint": "jsonlint schemas/firebase.schema.json -V __tests__/jsonschema.schema.json",
"lint!": "jsonlint schemas/firebase.schema.json -i -V __tests__/jsonschema.schema.json",
"precommit": "lint-staged",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/SirWindfield/firebase-configuration-schema.git"
},
"publisher": "zerotask",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": "firebase.json",
"url": "./schemas/firebase.schema.json"
}
]
},
"devDependencies": {
"@semantic-release/git": "^2.0.0",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.0.0",
"jsonlint": "^1.6.3",
"lint-staged": "^7.0.5",
"semantic-release": "^15.1.7",
"semantic-release-vsce": "^2.0.0",
"travis-deploy-once": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.json": [
"npm run lint!",
"git add"
]
},
"release": {
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"getLastRelease": "@semantic-release/git",
"publish": [
{
"path": "semantic-release-vsce",
"packageVsix": "firebase-configuration-schema.vsix"
},
{
"path": "@semantic-release/github",
"assets": "firebase-configuration-schema.vsix"
}
]
},
"greenkeeper": {
"ignore": [
"@semantic-release/git"
]
}
}