-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.52 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.52 KB
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": "react-hyper-responsive-table",
"description": "react-hyper-responsive-table React component",
"version": "1.0.0-rc.0",
"author": "Jorrit Schippers <jorrit@ncode.nl>",
"bugs": {
"url": "https://github.com/jorrit/react-hyper-responsive-table/issues"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-html": "^1.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-jest": "^29.2.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"expect": "^29.2.1",
"gh-pages": "^5.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"match-media-mock": "^0.1.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^18.0.1",
"react-dom": "^18.0.1",
"rollup": "^3.2.3",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-node-externals": "^5.0.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.1.0",
"typescript": "^5.0.3"
},
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"homepage": "https://jorrit.github.io/react-hyper-responsive-table/",
"keywords": [
"react",
"react-component",
"responsive",
"table"
],
"license": "MIT",
"main": "index.js",
"exports": "./index.mjs",
"types": "./index.d.ts",
"peerDependencies": {
"prop-types": "*",
"react": "^16.0.1 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/jorrit/react-hyper-responsive-table.git"
},
"scripts": {
"build": "rollup -c",
"build:demo": "rollup -c demo/src/rollup.config.mjs",
"gh-pages": "gh-pages -d demo/dist",
"lint": "eslint .",
"test": "jest src"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"endOfLine": "auto",
"arrowParens": "avoid"
}
}