-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.27 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
{
"name": "@dccs/react-table-plain",
"version": "0.9.1-1",
"description": "A NPM package that helps creating HTML tables in a React-way.",
"main": "lib/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "run-s lint test transpile",
"transpile": "tsc",
"lint": "tslint ./src/**/*.ts*",
"test": "jest --runInBand --coverage",
"test:watch": "jest --runInBand --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCCS-IT-Business-Solutions/react-table-plain.git"
},
"keywords": [
"npm",
"node",
"react",
"table",
"sorting",
"filter",
"paging",
"javascrip",
"typescript"
],
"author": "Stephan Meißner",
"license": "MIT",
"bugs": {
"url": "https://github.com/DCCS-IT-Business-Solutions/react-table-plain/issues"
},
"homepage": "https://github.com/DCCS-IT-Business-Solutions/react-table-plain#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"roots": [
"./src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jest-environment-jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"testRegex": "^.+\\.(test|spec)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}