-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.1 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tubular-common",
"version": "7.0.2",
"description": "Tubular Common Models and Data Transformer",
"main": "dist/index.js",
"scripts": {
"test": "jest --runInBand",
"cest": "jest --collectCoverage --runInBand",
"lint": "pnpm biome check src/",
"lint:fix": "pnpm biome check --write src/",
"build": "tsc",
"watch": "tsc -w",
"preparepackage": "pnpm build && pnpm copypackage",
"copypackage": "npx shx cp package.json dist"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.ts",
"./test/browserMocks.js"
],
"coverageReporters": [
"lcov",
"text"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"diagnostics": false,
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 85,
"statements": -155
}
}
},
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/tubular-common.git"
},
"keywords": [
"tubular",
"data",
"grid"
],
"author": "Unosquare",
"license": "MIT",
"bugs": {
"url": "https://github.com/unosquare/tubular-common/issues"
},
"homepage": "https://github.com/unosquare/tubular-common#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"dayjs": "^1.11.13"
}
}