-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (38 loc) · 962 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
{
"name": "jest-spec",
"version": "0.0.6",
"description": "Gherkin / Cucumber style feature definitions for Jest tests.",
"main": "index.mjs",
"type": "module",
"files": [
"index.mjs",
"index.d.ts",
"src/**.*"
],
"types": "src/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Steve-Fenton/JestSpec.git"
},
"keywords": [
"jest",
"gherkin",
"feature",
"cucumber"
],
"author": "Steve Fenton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Steve-Fenton/JestSpec/issues"
},
"homepage": "https://github.com/Steve-Fenton/JestSpec",
"devDependencies": {
"@types/node": "^18.11.9",
"jest": "^29.3.1",
"typescript": "^4.9.3",
"glob": "^8.0.3"
}
}