-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.66 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
{
"name": "gherkin-io",
"version": "1.3.0",
"description": "Tool to read/write Gherkin feature files and work with Gherking AST",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run buildUpdate && npm test && npm run typedoc",
"buildUpdate": "npm run clean && npm run compile && npm run copyToDist",
"copyToDist": "copyfiles -f *.txt *.md package.json dist",
"typedoc": "typedoc --out ./docs ./src && touch ./docs/.nojekyll",
"clean": "rimraf ./dist ./docs ./reports ./coverage",
"test": "dotenv-ng --var JEST_JUNIT_OUTPUT_DIR=./reports -- jest --coverage",
"lint": "eslint . --ext .ts --fix",
"compile": "tsc && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gherking/gherkin-io.git"
},
"keywords": [
"Gherkin",
"Feature",
"Scenario",
"Scenario Outline",
"Background",
"Step",
"Examples"
],
"author": "GherKing (https://github.com/gherking)",
"license": "MIT",
"contributors": [
"Laszlo Szikszai <sziklaszlo@gmail.com>"
],
"files": [
"**/*.js",
"**/*.d.ts",
"**/*.js.map"
],
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/gherking/gherkin-io/issues"
},
"homepage": "https://github.com/gherking/gherkin-io#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"copyfiles": "^2.4.1",
"dotenv-ng": "^1.1.4",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@cucumber/gherkin": "^27.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"debug": "^4.3.4",
"fs-extra": "^11.1.1",
"gherkin-ast": "^3.4.0",
"gherkin-formatter": "^1.2.0",
"glob": "^10.3.10"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"dist"
],
"collectCoverage": true,
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"./src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
}
}