forked from clarketm/TableExport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.34 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
62
63
64
{
"name": "tableexport",
"version": "5.0.0-rc.11",
"authors": [
"clarketm <[email protected]>"
],
"description": "The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files",
"main": "dist/js/tableexport.js",
"typings": "dist/tableexport.d.ts",
"style": [
"dist/css/tableexport.css"
],
"keywords": [
"tableexport",
"table",
"export",
"Excel",
"xlsx",
"xls",
"csv",
"txt",
"jquery-plugin",
"ecosystem:jquery"
],
"scripts": {
"test": "gulp",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/clarketm/TableExport"
},
"bugs": {
"url": "https://github.com/clarketm/TableExport/issues"
},
"peerDependencies": {
"jquery": ">= 1.1.2",
"bootstrap": ">= 3 < 4"
},
"dependencies": {
"blobjs": "^1.1.1",
"file-saverjs": "^1.3.6",
"xlsx": "^0.9.13"
},
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.4.0",
"gulp-clean-css": "^2.0.7",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.3",
"jasmine": "^2.4.1"
},
"license": "Apache-2.0",
"homepage": "https://tableexport.v4.travismclarke.com/",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}