forked from bencompton/jest-cucumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "jest-cucumber",
"version": "3.0.1",
"description": "Execute Gherkin scenarios in Jest",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"jest": "jest --verbose",
"test": "npm run build & npm run lint & jest --color",
"update-snapshots": "jest --updateSnapshot",
"lint": "tslint --project ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencompton/jest-cucumber.git"
},
"keywords": [
"jest",
"gherkin",
"cucumber"
],
"author": "Ben Compton",
"license": "MIT",
"bugs": {
"url": "https://github.com/bencompton/jest-cucumber/issues"
},
"homepage": "https://github.com/bencompton/jest-cucumber#readme",
"devDependencies": {
"babel-jest": "^24.1.0",
"ts-jest": "^27.0.2",
"tslint": "^5.10.0",
"typescript": "^3.3.3"
},
"dependencies": {
"@cucumber/gherkin": "^17.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.7",
"@types/node": "^11.9.4",
"@types/uuid": "^8.3.0",
"callsites": "^3.0.0",
"glob": "^7.1.6",
"jest": "^27.0.4",
"uuid": "^8.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.steps.ts"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}