-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·61 lines (61 loc) · 1.7 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
{
"name": "spicy-datatable",
"description": "React.js datatables without jQuery. Smart react datatable that includes search, pagination and localization.",
"bugs": {
"url": "https://github.com/filipdanic/spicy-datatable/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:filipdanic/spicy-datatable.git"
},
"keywords": [
"react datatable",
"react datatables",
"react table",
"react smart table",
"datatable",
"datatables",
"pagination"
],
"author": {
"name": "Filip Danić",
"email": "filipdanic7@gmail.com",
"url": "http://danicfilip.com"
},
"main": "lib/SpicyDatatable.js",
"version": "0.8.2",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-css-import-to-string": "0.0.2",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"extract-text-webpack-plugin": "1.0.1",
"react-addons-test-utils": "15.4.2",
"react-scripts": "1.1.0",
"react-test-renderer": "^16.0.0",
"webpack": "2.7.0",
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"prepublish": "npm run build-module",
"build-module": "webpack --config webpack.prod.config.js --colors --display-error-details --progress"
},
"dependencies": {
"json2csvexporter": "^0.4.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^16.0.0",
"prop-types": "^15.6.1"
}
}