-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"name": "react-table-plugins",
"version": "0.0.0",
"description": "This contains miscellaneous react-table v7 plugins",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"test": "yarn test:jest",
"test:watch": "jest --watch",
"test:jest": "jest --coverage",
"test:coverage": "yarn test:jest; open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gargroh/react-table-plugins.git"
},
"keywords": [
"react-table",
"v7",
"plugins",
"useExportData",
"useColumnSummary",
"useCellRangeSelection"
],
"author": "Rohit Garg <[email protected]> (https://github.com/gargroh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gargroh/react-table-plugins/issues"
},
"homepage": "https://github.com/gargroh/react-table-plugins#readme",
"peerDependencies": {
"react": "^16.8.3 || ^17.0.0 || ^18.0.0",
"react-table": "^7.0.5"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-transform-runtime": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@testing-library/jest-dom": "5.11.1",
"@testing-library/react": "10.4.7",
"cross-env": "7.0.2",
"jest": "26.1.0",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-table": "7.3.2",
"rollup": "2.12.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.2"
}
}