-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "cucumber-console-formatter",
"version": "1.0.0",
"description": "A simple console formatter for Cucumber.js v7",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.test.js",
"!*.test.d.ts"
],
"scripts": {
"build": "rimraf lib && npm run format && npm run lint && tsc",
"format": "prettier --write \"{src,test}/**/*.ts\" ",
"install-peers": "npm install --no-save @cucumber/cucumber@latest",
"lint-fix": "npm run lint -- --fix",
"lint": "eslint . --ext .js,.ts --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
"package": "npm run build && rimraf package && rm -f cucumber-console-formatter*.tgz && npm pack",
"test": "jest --config=jest.config.js --runInBand --coverage=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdorgeval/cucumber-console-formatter.git"
},
"author": "Henri d'Orgeval",
"license": "ISC",
"bugs": {
"url": "https://github.com/hdorgeval/cucumber-console-formatter/issues"
},
"homepage": "https://github.com/hdorgeval/cucumber-console-formatter#readme",
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "26.0.20",
"@types/node": "14.14.20",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"peerDependencies": {
"@cucumber/cucumber": ">= 7.0.0"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@types/lodash": "4.14.167"
}
}