-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "jest-trx-results-processor",
"description": "Jest results processor for exporting into TRX files for Visual Studio",
"author": "Dan Homola",
"user": "no23reason",
"version": "0.0.0-semantic-release",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/no23reason/jest-trx-results-processor",
"type": "git"
},
"bugs": {
"url": "https://github.com/no23reason/jest-trx-results-processor/issues"
},
"keywords": [
"jest",
"jestjs",
"jest-cli",
"trx"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "jest --coverage",
"test:ci": "npm run test:eslint && npm test",
"test:tdd": "jest --watch",
"test:eslint": "eslint -c .eslintrc.js --ext .ts ./src",
"semantic-release": "semantic-release"
},
"dependencies": {
"mkdirp": "^1.0.3",
"uuid": "^8.0.0",
"xmlbuilder": "^15.1.0"
},
"devDependencies": {
"@jest/test-result": "^26.0.1",
"@types/jest": "^26.0.15",
"@types/mkdirp": "^1.0.0",
"@types/uuid": "^8.0.0",
"@types/xml2js": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.12.1",
"jest": "^26.0.1",
"semantic-release": "^17.2.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5",
"xml2js": "^0.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest"
}
}