-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "gherkin-genie",
"version": "1.3.3",
"description": "A library to magically create tests from Gherkins.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"clean": "rimraf ./dist",
"prebuild": "yarn clean",
"build": "yarn build:types && yarn build:toc",
"build:toc": "markdown-toc -i README.md",
"build:types": "tsc",
"prepublishOnly": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drpicox/gherkin-genie.git"
},
"keywords": [
"gherkin",
"jest",
"steps",
"easy",
"genie",
"context",
"no-regexp"
],
"files": [
"dist",
"examples",
"tests"
],
"author": "David Rodenas",
"license": "ISC",
"bugs": {
"url": "https://github.com/drpicox/gherkin-genie/issues"
},
"homepage": "https://github.com/drpicox/gherkin-genie#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"markdown-toc": "^1.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@cucumber/gherkin": "^26.2.0",
"@cucumber/messages": "^22.0.0",
"chalk": "v4"
}
}