-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "@sgohlke/stryker-log-ignorer",
"version": "2.0.2",
"description": "Log Ignorer for Stryker",
"scripts": {
"build": "tsup-node",
"check": "tsc --noEmit --pretty",
"checkformat": "prettier --check .",
"format": "prettier --cache --write .",
"lint": "eslint src/*.ts tests/*.ts",
"lintfix": "eslint --fix src/*.ts tests/*.ts",
"prepack": "npm run build",
"test": "vitest run --coverage"
},
"type": "module",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgohlke/stryker-log-ignorer.git"
},
"keywords": [
"Stryker",
"Mutation Testing",
"Log Ignorer"
],
"author": "Stefan Gohlke",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/sgohlke/stryker-log-ignorer/issues"
},
"homepage": "https://github.com/sgohlke/stryker-log-ignorer#readme",
"devDependencies": {
"@babel/parser": "7.26.2",
"@babel/traverse": "7.25.9",
"@types/babel__core": "7.20.5",
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.6",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unicorn": "56.0.1",
"prettier": "3.4.1",
"prettier-plugin-organize-imports": "4.1.0",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite-tsconfig-paths": "5.1.3",
"vitest": "2.1.6"
},
"dependencies": {
"@stryker-mutator/api": "8.6.0"
}
}