-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "@cucumber/pretty-formatter",
"version": "1.0.1",
"description": "Official Cucumber.js Pretty Formatter",
"repository": "https://github.com/cucumber/cucumber-js-pretty-formatter",
"maintainers": [
"Julien Biezemans <[email protected]>"
],
"contributors": [
"Ilya Kozhevnikov <[email protected]>",
"Julien Biezemans <[email protected]>"
],
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib/src"
],
"directories": {
"lib": "lib"
},
"scripts": {
"build:clean:tests": "rm -rf lib/test",
"build:clean": "rm -rf lib",
"build:release": "npm run build && npm run test:nobuild && npm run build:clean:tests",
"build:watch": "tsc -p tsconfig.node.json --watch",
"build": "tsc -p tsconfig.node.json",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test:mocha:wip:watch": "mocha -w -g wip",
"test:mocha:wip": "mocha -g wip",
"test:mocha": "mocha",
"test:nobuild": "npm run test:mocha",
"test": "npm run build && npm run test:mocha"
},
"dependencies": {
"ansi-styles": "^5.0.0",
"cli-table3": "^0.6.0",
"figures": "^3.2.0",
"ts-dedent": "^2.0.0"
},
"peerDependencies": {
"@cucumber/cucumber": ">=7.0.0",
"@cucumber/messages": "*"
},
"devDependencies": {
"@cucumber/cucumber": "^8.3.1",
"@cucumber/messages": "^24.0.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"colors": "^1.4.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^11.0.0",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"should": "^13.2.3",
"stream-to-string": "^1.2.0",
"typescript": "^4.1.3"
}
}