-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 2.39 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
83
84
85
86
87
88
89
90
{
"name": "uno-react",
"version": "1.11.0",
"description": "Common functions, and hooks for React.",
"main": "lib/index.js",
"scripts": {
"test": "jest --runInBand",
"cest": "jest --collectCoverage",
"build": "tsc",
"lint": "eslint src/**/*.{js,ts,tsx}",
"lint:fix": "eslint src/**/*.{js,ts,tsx} --fix",
"prettier": "prettier --check src/**/*.ts*",
"prettier:fix": "prettier --write src/**/*.ts*",
"codestyle:fix": "npm run lint:fix && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/uno-react.git"
},
"keywords": [
"react",
"hooks",
"common",
"swan"
],
"author": "Unosquare",
"license": "MIT",
"bugs": {
"url": "https://github.com/unosquare/uno-react/issues"
},
"homepage": "https://github.com/unosquare/uno-react#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.12",
"eslint": "^8.46.0",
"eslint-config-unosquare": "^0.3.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"lib"
],
"dependencies": {
"uno-js": "^3.22.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"diagnostics": false,
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/src/**/*.test.+(ts|js|tsx)"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"lcov",
"text"
],
"setupFilesAfterEnv": [
"./setupTests.ts"
]
}
}