forked from clarketm/TableExport
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.66 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
65
66
67
68
69
70
71
72
73
74
{
"name": "crestapps-tableexport",
"version": "6.0.2",
"author": "Mike Alhayek <[email protected]> (https://crestapps.com)",
"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",
"files": [
"dist",
"README.md",
"LICENSE.txt",
"typings.json"
],
"style": [
"dist/css/tableexport.css"
],
"keywords": [
"tableexport",
"table",
"export",
"Excel",
"xlsx",
"xls",
"csv",
"txt",
"jquery-plugin",
"ecosystem:jquery"
],
"scripts": {
"build": "gulp build",
"prettier": "prettier --write ./src/stable/**/*.{js,css,md}",
"test": "gulp test",
"prep": "yarn prettier && yarn build",
"prepublishOnly": "yarn prep"
},
"repository": {
"type": "git",
"url": "https://github.com/CrestApps/TableExport"
},
"bugs": {
"url": "https://github.com/CrestApps/TableExport/issues"
},
"peerDependencies": {
"bootstrap": ">= 3 < 4",
"jquery": ">= 1.1.2"
},
"dependencies": {
"blobjs": "^1.1.1",
"file-saverjs": "^1.3.6",
"xlsx": "^0.14.5",
"yarn": "^1.22.4",
"graceful-fs": "4.2.2"
},
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^3.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"jasmine": "^3.5.0",
"prettier": "^1.19.1"
},
"license": "Apache-2.0",
"homepage": "https://tableexport.travismclarke.com/",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}