-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.51 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": "cypress-circleci-reporter",
"version": "0.3.0",
"author": "Kamil Socha (https://github.com/ksocha)",
"description": "Cypress test reporter for CircleCI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ksocha/cypress-circleci-reporter.git"
},
"keywords": [
"circleci",
"reporter",
"cypress",
"parallelization",
"testing"
],
"bugs": {
"url": "https://github.com/ksocha/cypress-circleci-reporter/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --target node",
"build": "tsdx build --target node",
"test": "tsdx test .*.test.ts",
"lint": "tsdx lint",
"prepare": "tsdx build --target node",
"cypress": "cypress run --reporter ./dist/index.js"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/cypress-circleci-reporter.esm.js",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/mocha": "^8.2.1",
"@types/xml": "^1.0.5",
"cypress": "^4.12.1",
"husky": "^4.3.8",
"jest-date-mock": "^1.0.8",
"jest-xml-matcher": "^1.2.0",
"mocha": "^8.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
},
"dependencies": {
"strip-ansi": "^6.0.0",
"xmlbuilder2": "^2.1.1"
},
"peerDependencies": {
"mocha": ">=7"
}
}