-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.57 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
{
"name": "eslint-config-typed-fp",
"version": "5.4.0",
"description": "An opinionated ESLint config to encourage pure(ish), typeful functional programming in TypeScript.",
"main": "dist",
"repository": "https://github.com/danielnixon/eslint-config-typed-fp.git",
"author": "Daniel Nixon <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-total-functions": "^7.1.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typed-fp": "^5.4.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-total-functions": "^7.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives",
"test": "eslint src --ext .ts,.tsx --report-unused-disable-directives --config dist/index.js",
"release": "yarn build && yarn test && yarn lint && yarn type-coverage && yarn publish"
},
"typeCoverage": {
"atLeast": 100,
"strict": true,
"detail": true
},
"engines": {
"node": ">=16.10.0"
}
}