-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
164 lines (164 loc) · 4.63 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "bdd-power-tools",
"displayName": "BDD - Feature-Editor",
"description": "Autocompletion and syntax highlighting for Gherkin steps in .feature-files",
"version": "1.1.0",
"keywords": [
"gherkin",
"feature",
"bdd"
],
"publisher": "iteratec",
"author": "Christoph Murczek <[email protected]>",
"contributors": [],
"license": "MIT",
"main": "./client/out/bddPowerTools",
"badges": [
{
"description": "Build Status",
"href": "https://dev.azure.com/iteratec-oss-bdd/bddpowertools/_build/latest?definitionId=1",
"url": "https://dev.azure.com/iteratec-oss-bdd/bddpowertools/_apis/build/status/iteratec.bdd-power-tools"
},
{
"description": "semantic-release",
"href": "https://github.com/semantic-release/semantic-release",
"url": "https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg"
}
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.25.0"
},
"activationEvents": [
"workspaceContains:**/*.feature"
],
"contributes": {
"configuration": {
"title": "BDD - Feature-Editor",
"type": "object",
"properties": {
"bddFeatureEditor.language": {
"scope": "resource",
"type": "string",
"default": "en",
"description": "The spoken language the scenarios are written in."
}
}
},
"languages": [
{
"id": "gherkin",
"aliases": [
"Gherkin",
"gherkin"
],
"extensions": [
".feature"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gherkin",
"scopeName": "text.cucumber.gherkin",
"path": "./syntaxes/gherkin.tmLanguage.json"
}
]
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "tsc -p client/tsconfig.json",
"build:server": "tsc -p server/tsconfig.json",
"prebuild:server": "cpy ./syntaxes/gherkin.tmLanguage.json ./server/src/ --rename gherkin.json",
"watch": "npm run watch:client && npm run watch:server",
"watch:client": "tsc -w -p client/tsconfig.json",
"watch:server": "tsc -w -p server/tsconfig.json",
"prewatch:server": "npm run prebuild:server",
"postinstall": "cd ./client && npm i && cd ../server && npm i && cd ..",
"commit": "git-cz",
"pretest": "npm run build && cpy client/src/test/features client/out/test/features",
"test": "node ./client/node_modules/vscode/bin/test",
"prerelease": "npm run build",
"release": "semantic-release --no-ci --dry-run",
"release:ci": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/exec": "^3.1.3",
"@semantic-release/git": "^7.0.4",
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"commitizen": "^3.0.7",
"cpy-cli": "^2.0.0",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"mocha": "^5.2.0",
"semantic-release": "^15.13.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/iteratec/bdd-power-tools.git"
},
"bugs": {
"url": "https://github.com/iteratec/bdd-power-tools/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "commitlint -e"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
{
"path": "@semantic-release/exec",
"cmd": "vsce ls-publishers"
}
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "./CHANGELOG.md"
},
"@semantic-release/npm",
"@semantic-release/git",
{
"path": "@semantic-release/exec",
"cmd": "vsce package"
}
],
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": "*.vsix",
"label": "Extension installer for offline installation"
},
{
"path": "@semantic-release/exec",
"cmd": "vsce publish -p $PAT"
}
],
"branch": "master",
"repositoryUrl": "[email protected]:iteratec/bdd-power-tools.git",
"npmPublish": false
}
}