-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.39 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": "cypress-teamcity-reporter",
"engines": {
"node": ">=14"
},
"version": "4.0.0",
"description": "teamcity reporter for cypress",
"main": "./lib/teamcity.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"lint-fix": "eslint --fix lib/*.js test/**/*.js",
"lint": "eslint lib/*.js test/**/*.js",
"prepare": "npm run test",
"test-teamcity-example": "mocha test/example/exampleSimple.js --reporter lib/teamcity.js",
"test-teamcity": "mocha test/functional test/programmatic --reporter lib/teamcity.js",
"test": "mocha test/functional test/programmatic"
},
"repository": {
"type": "git",
"url": "https://github.com/prma85/cypress-teamcity-reporter"
},
"keywords": [
"cypress",
"mocha",
"teamcity",
"reporter",
"jetbrains"
],
"peerDependencies": {
"mocha": ">=4.0.0"
},
"author": "Paulo Andrade",
"maintainers": [
{
"name": "Travis Jeffery",
"url": "https://github.com/travisjeffery"
},
{
"name": "Jamie Sherriff",
"url": "https://github.com/jamie-sherriff"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prma85/cypress-teamcity-reporter/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-babel": "^5.3.1",
"mocha": "^10.2.0"
}
}