-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "cucumber-json-report-formatter",
"version": "0.1.4",
"description": "Cucumber report formatter for @badeball/cypress-cucumber-preprocessor report",
"license": "MIT",
"author": "Vitalii Rymar",
"main": "./lib/index.js",
"engines": {
"node": ">=14.16"
},
"keywords": [
"cucumber",
"formatter",
"report",
"bdd",
"automation"
],
"repository": {
"type": "git",
"url": "https://github.com/Vitalizzzer/cucumber-json-report-formatter.git"
},
"bugs": {
"url": "https://github.com/Vitalizzzer/cucumber-json-report-formatter/issues"
},
"homepage": "https://github.com/Vitalizzzer/cucumber-json-report-formatter/#readme",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run eslint",
"build": "tsc",
"eslint": "eslint ./src"
},
"files": [
"lib/**/*"
],
"dependencies": {
"jsonschema": "^1.4.1",
"fs": "^0.0.1-security"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"vrsource-tslint-rules": "^6.0.0"
}
}