-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "eslint-plugin-total-functions",
"version": "7.1.0",
"description": "An ESLint plugin to enforce the use of TypeScript total functions.",
"main": "dist",
"repository": "https://github.com/danielnixon/eslint-plugin-total-functions.git",
"author": "Daniel Nixon <dan.nixon@gmail.com>",
"license": "MIT",
"devDependencies": {
"@stryker-mutator/core": "7.3.0",
"@stryker-mutator/jest-runner": "7.3.0",
"@stryker-mutator/typescript-checker": "7.3.0",
"@types/eslint": "8.56.11",
"@types/jest": "29.5.12",
"codecov": "3.8.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-typed-fp": "5.4.0",
"eslint-plugin-functional": "6.1.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-sonarjs": "0.21.0",
"eslint-plugin-total-functions": "7.1.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"ts-jest": "29.2.4",
"type-coverage": "2.29.1",
"typescript": "5.4.5"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/type-utils": "^5.62.0",
"@typescript-eslint/utils": "^5.62.0",
"is-immutable-type": "^1.2.9",
"tsutils": "^3.21.0"
},
"peerDependencies": {
"eslint": "^8.48.0",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts,.tsx --report-unused-disable-directives",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "jest",
"release": "yarn build && yarn type-coverage && yarn publish",
"mutation-test": "stryker run"
},
"typeCoverage": {
"atLeast": 99.96,
"strict": true,
"detail": true
}
}