-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 733 Bytes
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
{
"name": "cucumber-pretty",
"version": "6.0.1",
"description": "Cucumber.js Pretty Formatter",
"repository": "https://github.com/kozhevnikov/cucumber-pretty",
"author": "Ilya Kozhevnikov <git@kozhevnikov.com>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"dependencies": {
"cli-table3": "^0.6.0",
"colors": "^1.4.0",
"figures": "^3.2.0"
},
"peerDependencies": {
"cucumber": ">=6.0.0 <7.0.0"
},
"devDependencies": {
"cucumber": "^6.0.5",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"mocha": "^9.1.3",
"should": "^13.2.3"
}
}