-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 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
50
51
52
53
54
55
56
57
58
{
"name": "@navikt/textparser",
"version": "0.0.1",
"description": "Simple regex-based text-parser.",
"repository": "github:navikt/textparser",
"homepage": "https://github.com/navikt/textparser",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"commit": "git-cz"
},
"publishConfig": {
"access": "public"
},
"author": "NAV",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.5",
"@types/react": ">=18.3.3",
"@types/react-dom": ">=18.3.0",
"git-cz": "^4.9.0",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "^15.4.2 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}