-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "react-hyper-responsive-table",
"description": "react-hyper-responsive-table React component",
"version": "0.9.0",
"author": "Jorrit Schippers <[email protected]>",
"bugs": {
"url": "https://github.com/jorrit/react-hyper-responsive-table/issues"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"expect": "^1.20.2",
"gh-pages": "^4.0.0",
"match-media-mock": "^0.1.1",
"nwb": "^0.25.2",
"nyc": "^15.1.0",
"prop-types": "^15.7.2",
"react": "^18.0.1",
"react-dom": "^18.0.1"
},
"files": [
"es",
"lib",
"umd"
],
"homepage": "https://github.com/jorrit/react-hyper-responsive-table",
"keywords": [
"react",
"react-component",
"responsive",
"table"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"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": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"gh-pages": "gh-pages -d demo/dist",
"lint": "eslint .",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
}
}