-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 2.08 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
{
"name": "tubular-react-common",
"version": "2.0.0",
"description": "Unosquare Tubular React Common",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "pnpm run build",
"check": "pnpm run build && pnpm test",
"test": "jest",
"cest": "jest --collectCoverage",
"lint": "pnpm biome check src/",
"lint:fix": "pnpm biome check --write src/"
},
"jest": {
"automock": false,
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"diagnostics": false,
"tsconfig": "tsconfig.json"
}
],
"^.+\\.(js)$": "babel-jest"
},
"collectCoverageFrom": ["./src/**/*.{ts,tsx}", "!**/node_modules/**", "!./test/**"],
"transformIgnorePatterns": ["/node_modules/(?!tubular-common)"],
"testMatch": ["<rootDir>/test/**/*.spec.(ts|tsx)"],
"setupFilesAfterEnv": ["./setupJestEnv.ts"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/tubular-react-common.git"
},
"author": "Unosquare",
"license": "MIT",
"bugs": {
"url": "https://github.com/unosquare/tubular-react-common/issues"
},
"homepage": "https://github.com/unosquare/tubular-react-common#readme",
"dependencies": {
"tubular-common": "^7.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@biomejs/biome": "1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.2",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"striptags": "^3.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.11",
"react": "17.0.1",
"react-dom": "17.0.1"
}
}