-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "nested-datatables",
"version": "0.1.3",
"description": "jQuery DataTables plugin for rendering nested DataTables in rows. Inner tables are independent of the data and layout from the outer table.",
"main": "dist/nested.tables.min.js",
"scripts": {
"build": "webpack -d",
"prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git://github.com/AndrejGajdos/nested-datatables.git"
},
"keywords": [
"jquery",
"datatables",
"plugin",
"table",
"nested",
"inner",
"hierarchy",
"drill-down"
],
"author": "Andrej Gajdos <[email protected]> (http://andrejgajdos.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrejGajdos/nested-datatables/issues"
},
"homepage": "https://github.com/AndrejGajdos/nested-datatables#readme",
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.44",
"autoprefixer": "^7.1.2",
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"compression-webpack-plugin": "^1.1.10",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"node-sass": "^4.5.3",
"postcss": "^6.0.8",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"datatables": "^1.10.13",
"jquery": "^3.2.1"
}
}