-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.39 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": "object-exporter",
"homepage": "https://github.com/gharibi",
"description": "A little JavaScript plugin to generate PDF, XLS, CSV and DOC from JavaScript Object or DOM element only from the frontend!",
"version": "3.6.9",
"main": "dist/objectexporter.min.js",
"repository": "https://github.com/gharibi/JsObjExporter",
"license": "MIT",
"dependences": {},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"babel-preset-es2015": "^6.24.1",
"detect-browser": "^5.3.0",
"file-saver": "^2.0.5",
"install": "^0.13.0",
"npm": "^10.8.1",
"standard": "^17.1.0",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "standard --ignore '**/examples/**'",
"dev": "webpack --mode development",
"build": "webpack --mode production"
},
"author": "Dr. Arash Gharibi <[email protected]>",
"contributors": [
"Peng Wang <[email protected]>"
],
"standard": {
"ignore": [
"/dist/objectexporter.min.js",
"webpack.config.js"
]
},
"keywords": [
"objectexporter",
"object-exporter",
"jsobjexp",
"csv",
"xls",
"xlsx",
"doc",
"docx",
"dom",
"javascript-csv",
"javascript-xls",
"javascript-pdf",
"javascript-doc",
"javascript-html"
]
}