-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.77 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
{
"name": "readonly-types",
"version": "4.5.0",
"description": "A collection of readonly TypeScript types inspired by the built-in ReadonlyArray, ReadonlyMap, etc.",
"main": "dist",
"repository": "https://github.com/agiledigital/readonly-types.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/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@typescript-eslint/type-utils": "^6.6.0",
"codecov": "^3.8.3",
"eslint": "^8.48.0",
"eslint-config-agile-digital": "^3.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typed-fp": "^5.3.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-total-functions": "^7.1.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"type-coverage": "^2.26.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "jest",
"release": "yarn build && yarn lint && yarn type-coverage && yarn publish"
},
"typeCoverage": {
"atLeast": 99,
"ignoreCatch": false,
"strict": true,
"detail": true
},
"dependencies": {
"ts-essentials": "^9.4.0"
}
}