-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
71 lines (71 loc) · 2.25 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
67
68
69
70
71
{
"name": "testcafe-reporter-cucumber-json",
"version": "6.3.0",
"description": "Cucumber JSON TestCafe reporter plugin.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"testcafe-reporter-cucumber-json": "./bin/testcafe-reporter-cucumber-json.js"
},
"scripts": {
"jest--init": "jest --init",
"check-format": "prettier --list-different \"{bin,src}/**/*.ts\"",
"format": "prettier --write \"{bin,src}/**/*.ts\"",
"tsc": " tsc --listEmittedFiles",
"tsc:init": "tsc --init",
"tslint:init": "tslint --init",
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"lint": "eslint ./ --ext .js,.ts --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives --ignore-pattern 'coverage/*' --ignore-pattern 'node_modules/*'",
"build": "npm run format && npm run lint && rimraf lib && tsc ",
"package": "npm run build && npm run rimraf:package && rm -f my*.tgz && npm pack",
"rimraf:package": "rimraf ./package",
"test": "npm run build && npm run package && jest --config=jest.config.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdorgeval/testcafe-reporter-cucumber-json.git"
},
"author": "Henri d'Orgeval",
"keywords": [
"testcafe",
"reporter",
"plugin",
"json",
"cucumber"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hdorgeval/testcafe-reporter-cucumber-json/issues"
},
"homepage": "https://github.com/hdorgeval/testcafe-reporter-cucumber-json#readme",
"dependencies": {
"@types/minimist": "1.2.0",
"@types/node": "14.0.24",
"@types/semver": "7.3.1",
"callsite-record": "4.1.3",
"chalk": "2.4.2",
"minimist": "1.2.5",
"semver": "7.3.2"
},
"devDependencies": {
"@types/jest": "26.0.6",
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.1.0",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "26.1.3",
"ts-node": "8.10.2",
"typescript": "3.9.7"
},
"peerDependencies": {
"testcafe": "1.x"
},
"engines": {
"vscode": "^1.18.0"
}
}