forked from DCCS-IT-Business-Solutions/react-table-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.95 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
{
"name": "@dccs/react-table-mui",
"version": "1.0.2",
"description": "A Material-UI implementation of react-table-plain",
"main": "lib/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "run-s lint test transpile",
"transpile": "tsc",
"lint": "tslint ./src/**/*.ts*",
"test": "jest --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCCS-IT-Business-Solutions/react-table-mui.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-mui/issues"
},
"homepage": "https://github.com/DCCS-IT-Business-Solutions/react-table-mui#readme",
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"@dccs/react-table-plain": "^0.3.1"
},
"devDependencies": {
"@dccs/react-table-plain": "^0.3.1",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.4.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"c**/?(*.)(spec|test).ts?(x)"
],
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.js"
}
}