forked from langleyfoxall/react-dynamic-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "@langleyfoxall/react-dynamic-data-table",
"version": "7.14.0",
"description": "Re-usable data table for React with sortable columns, pagination and more.",
"keywords": [
"react",
"table",
"data table",
"pagination",
"bulk actions"
],
"main": "dist/index.js",
"scripts": {
"test": "echo \"No tests.\" && exit 0",
"build": "node ./node_modules/@babel/cli/bin/babel src/ --out-dir dist/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langleyfoxall/react-dynamic-data-table.git"
},
"author": "Jordan Hall <[email protected]>",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/langleyfoxall/react-dynamic-data-table/issues"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"prop-types": "^15.6.2"
},
"homepage": "https://github.com/langleyfoxall/react-dynamic-data-table#readme",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0"
},
"dependencies": {
"axios": "^0.18.1",
"classnames": "^2.2.6",
"core-js": "^2.6.10"
}
}