forked from dtjohnson/xlsx-populate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.28 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
75
76
77
78
79
80
{
"name": "field-xlsx-populate",
"version": "1.21.0",
"description": "Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.",
"keywords": [
"excel",
"workbook",
"xlsx",
"parse",
"generate",
"populate",
"template",
"browser",
"style",
"formatting",
"encryption",
"password"
],
"main": "lib/XlsxPopulate.js",
"browser": {
"XlsxPopulate": "./browser/xlsx-populate.js"
},
"scripts": {
"test": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"e2e-generate": "jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json",
"e2e-parse": "jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json",
"test:windows": "npm-run-all test e2e-parse e2e-generate",
"docs": "gulp docs"
},
"author": "Dave T. Johnson <[email protected]>",
"contributors": [
"Eddie Corrigall <[email protected]>",
"Alan Doyle <[email protected]>"
],
"license": "MIT",
"dependencies": {
"cfb": "^1.1.3",
"jszip": "^3.2.2",
"lodash": "^4.17.15",
"sax": "^1.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/fielded/xlsx-populate.git"
},
"bugs": "https://github.com/fielded/xlsx-populate/issues",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"edge-js": "^13.0.1",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"jasmine": "^3.5.0",
"jsdoc-to-markdown": "^5.0.3",
"jsondiffpatch": "^0.4.1",
"karma": "^4.4.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^3.1.1",
"markdown-include": "^0.4.3",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"proxyquire": "^2.1.3",
"proxyquire-universal": "^2.1.0",
"proxyquireify": "^3.2.1",
"replacestream": "^4.0.3",
"uglify-js": "^3.8.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
}
}