-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 949 Bytes
/
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
{
"name": "TableExporter",
"version" : "0.0.1",
"authors": [
"simonsch <[email protected]>",
"chmoser <email>"
],
"description": "The simple, easy-to-implement plugin to export HTML tables to xlsx, xls, csv, and txt files",
"main": "dist/js/tableexporter.js",
"keywords": [
"table",
"export",
"table",
"export",
"Excel",
"xlsx",
"xls",
"csv",
"txt",
"json",
"html",
"jquery-plugin",
"ecosystem:jquery"
],
"scripts": {
"test": "gulp"
},
"dependencies": {
"Blob": "*",
"bootstrap": "~3.3.5",
"filesaver.js": "~0.2.0",
"jquery": "3.0.0",
"xlsx": "0.8.0"
},
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.7",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3"
},
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}