-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "prettier-plugin-gherkin",
"version": "3.1.1",
"type": "module",
"description": "This prettier plugin format your gherkin (`.feature` files) documents.",
"repository": {
"type": "git",
"url": "https://github.com/mapado/prettier-plugin-gherkin.git"
},
"bugs": {
"url": "https://github.com/mapado/prettier-plugin-gherkin/issues"
},
"homepage": "https://github.com/mapado/prettier-plugin-gherkin",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"example": "yarn build && prettier --plugin=dist/index.js tests/plugin/example.feature",
"test": "yarn build && NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "yarn build"
},
"keywords": [
"prettier",
"plugin",
"gherkin"
],
"author": {
"name": "Julien Deniau",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@cucumber/gherkin": "^27.0.0",
"@cucumber/messages": "^23.0.0",
"prettier": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"jest": "^29.0.0",
"jest-watch-typeahead": "^2.2.2",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]"
}