-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "jest-ado-reporter",
"version": "0.0.3",
"description": "Reports jest test suite progress information to the pipeline step in Azure DevOps.",
"keywords": [
"jest",
"reporter"
],
"homepage": "https://github.com/bashaus/jest-ado-reporter",
"repository": {
"type": "git",
"url": "https://github.com/bashaus/jest-ado-reporter.git"
},
"license": "MIT",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf dist",
"lint": "eslint .",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@swc/core": "^1.3.67",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "^8.42.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"sort-package-json": "^2.4.1",
"typescript": "^5.1.6"
}
}