-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 954 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
36
37
38
39
40
{
"name": "translate-gherkin",
"version": "0.1.0",
"description": "A tool for the translation of keywords in Gherkin files",
"main": "index.js",
"bin": {
"translate-gherkin": "bin/translate.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha tests/**_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cap3/translate-gherkin.git"
},
"keywords": [
"Cucumber",
"Gherkin"
],
"author": "Justin Andresen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cap3/translate-gherkin/issues"
},
"homepage": "https://github.com/cap3/translate-gherkin#readme",
"dependencies": {
"@cucumber/gherkin": "^24.0.0",
"@cucumber/gherkin-utils": "^8.0.0",
"@cucumber/messages": "^19.1.2",
"chalk": "^4.1.2",
"commander": "^9.4.0"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
}
}