forked from dtjohnson/xlsx-populate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "xlsx-populate",
"version": "1.5.4",
"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"
],
"main": "lib/XlsxPopulate.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"
},
"author": "Dave T. Johnson <[email protected]>",
"contributors": [
"Eddie Corrigall <[email protected]>"
],
"license": "MIT",
"dependencies": {
"debug": "^2.6.0",
"jszip": "^3.1.3",
"lodash": "^4.17.4",
"sax": "^1.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dtjohnson/xlsx-populate.git"
},
"bugs": "https://github.com/dtjohnson/xlsx-populate/issues",
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"edge": "^6.5.1",
"eslint": "^3.13.1",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.0",
"jasmine": "^2.5.3",
"jsdoc-to-markdown": "^2.0.1",
"jsondiffpatch": "^0.2.4",
"karma": "^1.5.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"markdown-include": "^0.4.3",
"markdown-toc": "^1.1.0",
"proxyquire": "^1.7.10",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.1",
"replacestream": "^4.0.2",
"run-sequence": "^1.2.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.8.0"
}
}